Playwright Service 2024-05-29 08:28:26 -07:00 committed by GitHub
parent 141c6a9c81
commit 97a82e6b77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 4 deletions

View File

@ -15,13 +15,13 @@
},
{
"name": "firefox",
"revision": "1451",
"revision": "1452",
"installByDefault": true,
"browserVersion": "126.0"
},
{
"name": "firefox-beta",
"revision": "1451",
"revision": "1452",
"installByDefault": false,
"browserVersion": "127.0b3"
},

View File

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