feat(firefox-beta): roll to r1372 (#19466)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
Playwright Service 2022-12-15 09:00:50 -08:00 committed by GitHub
parent a67fa83ee1
commit 091234e57f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -27,7 +27,7 @@
}, },
{ {
"name": "firefox-beta", "name": "firefox-beta",
"revision": "1370", "revision": "1372",
"installByDefault": false, "installByDefault": false,
"browserVersion": "108.0b5" "browserVersion": "108.0b5"
}, },

View file

@ -253,6 +253,7 @@ it('frame.press should work', async ({ page, server }) => {
expect(await frame.evaluate(() => document.querySelector('textarea').value)).toBe('a'); expect(await frame.evaluate(() => document.querySelector('textarea').value)).toBe('a');
}); });
it('has navigator.webdriver set to true', async ({ page }) => { it('has navigator.webdriver set to true', async ({ page, browserName }) => {
it.fixme(browserName === 'firefox');
expect(await page.evaluate(() => navigator.webdriver)).toBe(true); expect(await page.evaluate(() => navigator.webdriver)).toBe(true);
}); });