mirror of https://github.com/zulip/zulip.git
puppeteer_lib: Remove wait_for_text.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
054f8f8151
commit
73ca1afc53
|
@ -197,15 +197,6 @@ class CommonUtils {
|
|||
return texts.join("").trim();
|
||||
}
|
||||
|
||||
async wait_for_text(page: Page, selector: string, text: string): Promise<void> {
|
||||
await page.waitForFunction(
|
||||
(selector: string, text: string) => $(selector).text().includes(text),
|
||||
{},
|
||||
selector,
|
||||
text,
|
||||
);
|
||||
}
|
||||
|
||||
async get_stream_id(page: Page, stream_name: string): Promise<number> {
|
||||
return await page.evaluate(
|
||||
(stream_name: string) => zulip_test.get_stream_id(stream_name),
|
||||
|
|
|
@ -97,7 +97,9 @@ async function navigation_tests(page: Page): Promise<void> {
|
|||
await test_reload_hash(page);
|
||||
|
||||
// Verify that we're narrowed to the target stream
|
||||
await common.wait_for_text(page, "#message_view_header .stream", "Verona");
|
||||
await page.waitForXPath(
|
||||
'//*[@id="message_view_header"]//*[@class="stream" and normalize-space()="Verona"]',
|
||||
);
|
||||
|
||||
await common.log_out(page);
|
||||
}
|
||||
|
|
|
@ -36,12 +36,11 @@ async function test_change_new_stream_notifications_setting(page: Page): Promise
|
|||
"verona",
|
||||
);
|
||||
|
||||
const verona_in_dropdown =
|
||||
"#realm_notifications_stream_id_widget .dropdown-list-body > li:nth-of-type(1)";
|
||||
|
||||
await common.wait_for_text(page, verona_in_dropdown, "Verona");
|
||||
await page.waitForSelector(verona_in_dropdown, {visible: true});
|
||||
await page.evaluate((selector: string) => $(selector).trigger("click"), verona_in_dropdown);
|
||||
const verona_in_dropdown = await page.waitForXPath(
|
||||
'//*[@id="realm_notifications_stream_id_widget"]//*[@class="dropdown-list-body"]/li[1]',
|
||||
{visible: true},
|
||||
);
|
||||
await verona_in_dropdown!.click();
|
||||
|
||||
await submit_notifications_stream_settings(page);
|
||||
|
||||
|
|
|
@ -29,10 +29,8 @@ async function test_mention(page: Page): Promise<void> {
|
|||
assert(stream_size > threshold);
|
||||
await page.click("#compose-send-button");
|
||||
|
||||
await common.wait_for_text(
|
||||
page,
|
||||
".compose-all-everyone-msg",
|
||||
"Are you sure you want to mention all",
|
||||
await page.waitForXPath(
|
||||
'//*[@class="compose-all-everyone-msg" and contains(text(), "Are you sure you want to mention all")]',
|
||||
);
|
||||
await page.click(".compose-all-everyone-confirm");
|
||||
await page.waitForSelector(".compose-all-everyone-msg", {hidden: true});
|
||||
|
|
|
@ -21,7 +21,9 @@ async function test_add_new_profile_field(page: Page): Promise<void> {
|
|||
await common.get_text_from_selector(page, "div#admin-add-profile-field-status"),
|
||||
"Saved",
|
||||
);
|
||||
await common.wait_for_text(page, `${profile_field_row} span.profile_field_name`, "Teams");
|
||||
await page.waitForXPath(
|
||||
'//*[@id="admin_profile_fields_table"]//tr[last()-1]/td[normalize-space()="Teams"]',
|
||||
);
|
||||
assert.strictEqual(
|
||||
await common.get_text_from_selector(page, `${profile_field_row} span.profile_field_type`),
|
||||
"Short text",
|
||||
|
@ -37,7 +39,9 @@ async function test_edit_profile_field(page: Page): Promise<void> {
|
|||
await page.click(`${profile_field_form} button.submit`);
|
||||
|
||||
await page.waitForSelector("#admin-profile-field-status img", {visible: true});
|
||||
await common.wait_for_text(page, `${profile_field_row} span.profile_field_name`, "team");
|
||||
await page.waitForXPath(
|
||||
'//*[@id="admin_profile_fields_table"]//tr[last()-1]/td[normalize-space()="team"]',
|
||||
);
|
||||
assert.strictEqual(
|
||||
await common.get_text_from_selector(page, `${profile_field_row} span.profile_field_type`),
|
||||
"Short text",
|
||||
|
|
Loading…
Reference in New Issue