mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Disable DOM domain after each operation. (#71)
It's very heavy to have DOM domain enabled. This patch keeps DOM domain disabled after each use.
This commit is contained in:
parent
279cd4c9fb
commit
afb096cfd7
54
lib/Page.js
54
lib/Page.js
@ -61,8 +61,6 @@ class Page extends EventEmitter {
|
||||
this._screenDPI = screenDPI;
|
||||
/** @type {!Map<string, function>} */
|
||||
this._inPageCallbacks = new Map();
|
||||
/** @type {?Promise<number>} */
|
||||
this._rootNodeIdPromise = null;
|
||||
|
||||
this._screenshotTaskChain = Promise.resolve();
|
||||
|
||||
@ -80,7 +78,6 @@ class Page extends EventEmitter {
|
||||
client.on('Runtime.consoleAPICalled', event => this._onConsoleAPI(event));
|
||||
client.on('Page.javascriptDialogOpening', event => this._onDialog(event));
|
||||
client.on('Runtime.exceptionThrown', exception => this._handleException(exception.exceptionDetails));
|
||||
client.on('DOM.documentUpdated', event => this._rootNodeIdPromise = null);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -492,25 +489,14 @@ class Page extends EventEmitter {
|
||||
await this._client.dispose();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {!Promise<number>}
|
||||
*/
|
||||
_rootNodeId() {
|
||||
if (!this._rootNodeIdPromise) {
|
||||
this._rootNodeIdPromise = this._client.send('DOM.getDocument', {
|
||||
depth: 0
|
||||
}).then(obj => obj.root.nodeId);
|
||||
}
|
||||
return this._rootNodeIdPromise;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} selector
|
||||
* @param {!Promise<number>}
|
||||
*/
|
||||
async _querySelector(selector) {
|
||||
let {root} = await this._client.send('DOM.getDocument', { depth: 1 });
|
||||
let {nodeId} = await this._client.send('DOM.querySelector', {
|
||||
nodeId: await this._rootNodeId(),
|
||||
nodeId: root.nodeId,
|
||||
selector
|
||||
});
|
||||
if (!nodeId)
|
||||
@ -523,11 +509,11 @@ class Page extends EventEmitter {
|
||||
* @param {!Promise}
|
||||
*/
|
||||
async click(selector) {
|
||||
let boxModel = (await this._client.send('DOM.getBoxModel', {
|
||||
nodeId: await this._querySelector(selector)
|
||||
})).model.content;
|
||||
let x = Math.round((boxModel[0] + boxModel[4]) / (2 * this._screenDPI));
|
||||
let y = Math.round((boxModel[1] + boxModel[5]) / (2 * this._screenDPI));
|
||||
try {
|
||||
const nodeId = await this._querySelector(selector);
|
||||
let boxModel = (await this._client.send('DOM.getBoxModel', { nodeId })).model.content;
|
||||
let x = Math.round((boxModel[0] + boxModel[4]) / 2);
|
||||
let y = Math.round((boxModel[1] + boxModel[5]) / 2);
|
||||
|
||||
this._client.send('Input.dispatchMouseEvent', {
|
||||
type: 'mouseMoved',
|
||||
@ -545,6 +531,9 @@ class Page extends EventEmitter {
|
||||
x, y,
|
||||
clickCount: 1
|
||||
});
|
||||
} finally {
|
||||
await this._client.send('DOM.disable');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -552,9 +541,12 @@ class Page extends EventEmitter {
|
||||
* @param {!Promise}
|
||||
*/
|
||||
async focus(selector) {
|
||||
await this._client.send('DOM.focus', {
|
||||
nodeId: await this._querySelector(selector)
|
||||
});
|
||||
try {
|
||||
const nodeId = await this._querySelector(selector);
|
||||
await this._client.send('DOM.focus', { nodeId });
|
||||
} finally {
|
||||
await this._client.send('DOM.disable');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -591,14 +583,16 @@ class Page extends EventEmitter {
|
||||
|
||||
/**
|
||||
* @param {string} selector
|
||||
* @param {!Array<string>} filePaths
|
||||
* @param {!Array<string>} files
|
||||
* @return {!Promise}
|
||||
*/
|
||||
async uploadFile(selector, ...filePaths) {
|
||||
await this._client.send('DOM.setFileInputFiles', {
|
||||
nodeId: await this._querySelector(selector),
|
||||
files: filePaths
|
||||
});
|
||||
async uploadFile(selector, ...files) {
|
||||
try {
|
||||
const nodeId = await this._querySelector(selector);
|
||||
await this._client.send('DOM.setFileInputFiles', { nodeId, files });
|
||||
} finally {
|
||||
await this._client.send('DOM.disable');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user