fx-compat: Fix search dialogs (#2631)

This commit is contained in:
Abe Jellinek 2022-07-04 01:48:52 -04:00 committed by GitHub
parent b78b9cad1f
commit 8face792c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1056 additions and 1217 deletions

View file

@ -19,7 +19,7 @@ describe("Advanced Search", function () {
it("should perform a search", function* () {
var item = yield createDataObject('item', { setTitle: true });
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xul');
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xhtml');
zp.openAdvancedSearchWindow();
var searchWin = yield promise;
@ -51,7 +51,7 @@ describe("Advanced Search", function () {
var searchWin, searchBox, conditions;
before(function* () {
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xul');
var promise = waitForWindow('chrome://zotero/content/advancedSearch.xhtml');
zp.openAdvancedSearchWindow();
searchWin = yield promise;
searchBox = searchWin.document.getElementById('zotero-search-box');