Skip to content

Commit

Permalink
chore: implement Frames for BiDi (#10121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightning00Blade committed May 15, 2023
1 parent 609584a commit 2808240
Show file tree
Hide file tree
Showing 32 changed files with 1,523 additions and 768 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
# Disabled as BiDi has issue on mac https://bugzilla.mozilla.org/show_bug.cgi?id=1832778
# - macos-latest
suite:
- firefox-bidi
- firefox-headful
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/puppeteer-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"author": "The Chromium Authors",
"license": "Apache-2.0",
"dependencies": {
"chromium-bidi": "0.4.7",
"chromium-bidi": "0.4.9",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"devtools-protocol": "0.0.1120988",
Expand Down
2 changes: 1 addition & 1 deletion packages/puppeteer-core/src/api/ElementHandle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {Protocol} from 'devtools-protocol';

import {CDPSession} from '../common/Connection.js';
import {ExecutionContext} from '../common/ExecutionContext.js';
import {Frame} from '../common/Frame.js';
import {MouseClickOptions} from '../common/Input.js';
import {WaitForSelectorOptions} from '../common/IsolatedWorld.js';
import {
Expand All @@ -30,6 +29,7 @@ import {
} from '../common/types.js';
import {KeyInput} from '../common/USKeyboardLayout.js';

import {Frame} from './Frame.js';
import {JSHandle} from './JSHandle.js';
import {ScreenshotOptions} from './Page.js';

Expand Down

0 comments on commit 2808240

Please sign in to comment.