Skip to content

Commit

Permalink
chore: split JSHandle.ts (#8551)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Jun 23, 2022
1 parent 26c3acb commit ebcb8a2
Show file tree
Hide file tree
Showing 14 changed files with 1,103 additions and 1,075 deletions.
4 changes: 2 additions & 2 deletions src/common/Accessibility.ts
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

import {CDPSession} from './Connection.js';
import {ElementHandle} from './JSHandle.js';
import {Protocol} from 'devtools-protocol';
import {CDPSession} from './Connection.js';
import {ElementHandle} from './ElementHandle.js';

/**
* Represents a Node and the properties of it that are relevant to Accessibility.
Expand Down
7 changes: 4 additions & 3 deletions src/common/AriaQueryHandler.ts
Expand Up @@ -14,12 +14,13 @@
* limitations under the License.
*/

import {InternalQueryHandler} from './QueryHandler.js';
import {ElementHandle, JSHandle} from './JSHandle.js';
import {Protocol} from 'devtools-protocol';
import {assert} from './assert.js';
import {CDPSession} from './Connection.js';
import {DOMWorld, PageBinding, WaitForSelectorOptions} from './DOMWorld.js';
import {assert} from './assert.js';
import {ElementHandle} from './ElementHandle.js';
import {JSHandle} from './JSHandle.js';
import {InternalQueryHandler} from './QueryHandler.js';

async function queryAXTree(
client: CDPSession,
Expand Down
3 changes: 2 additions & 1 deletion src/common/DOMWorld.ts
Expand Up @@ -17,11 +17,12 @@
import {Protocol} from 'devtools-protocol';
import {assert} from './assert.js';
import {CDPSession} from './Connection.js';
import {ElementHandle} from './ElementHandle.js';
import {TimeoutError} from './Errors.js';
import {ExecutionContext} from './ExecutionContext.js';
import {Frame, FrameManager} from './FrameManager.js';
import {MouseButton} from './Input.js';
import {ElementHandle, JSHandle} from './JSHandle.js';
import {JSHandle} from './JSHandle.js';
import {LifecycleWatcher, PuppeteerLifeCycleEvent} from './LifecycleWatcher.js';
import {_getQueryHandlerAndSelector} from './QueryHandler.js';
import {TimeoutSettings} from './TimeoutSettings.js';
Expand Down

0 comments on commit ebcb8a2

Please sign in to comment.