mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
refactor(firefox): migrate onto ExecutionContext events (#4064)
Juggler now has Runtime domain that emits Execution Context events "ExecutionContextCreated" and "ExecutionContextDestroyed".
This commit is contained in:
@@ -209,7 +209,7 @@ module.exports.addTests = function({testRunner, expect}) {
|
||||
const result = await page.evaluate(() => document.execCommand('copy'));
|
||||
expect(result).toBe(true);
|
||||
});
|
||||
it_fails_ffox('should throw a nice error after a navigation', async({page, server}) => {
|
||||
it('should throw a nice error after a navigation', async({page, server}) => {
|
||||
const executionContext = await page.mainFrame().executionContext();
|
||||
|
||||
await Promise.all([
|
||||
|
||||
Reference in New Issue
Block a user