2017-05-11 07:06:41 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let await = require('./utilities').await;
|
|
|
|
let EventEmitter = require('events');
|
|
|
|
let fs = require('fs');
|
|
|
|
let path = require('path');
|
|
|
|
let PageEvents = require('../lib/Page').Events;
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let noop = function() { };
|
2017-05-11 07:06:41 +00:00
|
|
|
|
|
|
|
class WebPage {
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Browser} browser
|
|
|
|
* @param {string} scriptPath
|
|
|
|
* @param {!Object=} options
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
constructor(browser, scriptPath, options) {
|
|
|
|
this._page = await(browser.newPage());
|
|
|
|
this.settings = new WebPageSettings(this._page);
|
|
|
|
|
|
|
|
options = options || {};
|
|
|
|
options.settings = options.settings || {};
|
|
|
|
if (options.settings.userAgent)
|
|
|
|
this.settings.userAgent = options.settings.userAgent;
|
|
|
|
if (options.viewportSize)
|
|
|
|
await(this._page.setViewportSize(options.viewportSize));
|
|
|
|
|
2017-07-05 07:07:36 +00:00
|
|
|
this.loading = false;
|
|
|
|
this.loadingProgress = 0;
|
2017-06-21 20:51:06 +00:00
|
|
|
this.clipRect = options.clipRect || {left: 0, top: 0, width: 0, height: 0};
|
|
|
|
this.onConsoleMessage = null;
|
|
|
|
this.onLoadFinished = null;
|
|
|
|
this.onResourceError = null;
|
|
|
|
this.onResourceReceived = null;
|
2017-07-05 07:07:36 +00:00
|
|
|
this._onInitialized = undefined;
|
2017-06-21 20:51:06 +00:00
|
|
|
this._deferEvaluate = false;
|
|
|
|
|
2017-07-06 21:51:34 +00:00
|
|
|
this._currentFrame = this._page.mainFrame();
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
this.libraryPath = path.dirname(scriptPath);
|
|
|
|
|
|
|
|
this._onResourceRequestedCallback = undefined;
|
|
|
|
this._onConfirmCallback = undefined;
|
|
|
|
this._onAlertCallback = undefined;
|
|
|
|
this._onError = noop;
|
|
|
|
|
|
|
|
this._pageEvents = new AsyncEmitter(this._page);
|
2017-06-29 06:09:28 +00:00
|
|
|
this._pageEvents.on(PageEvents.Response, response => this._onResponseReceived(response));
|
2017-07-05 07:07:36 +00:00
|
|
|
this._pageEvents.on(PageEvents.RequestFinished, request => this._onRequestFinished(request));
|
2017-06-29 06:09:28 +00:00
|
|
|
this._pageEvents.on(PageEvents.RequestFailed, event => (this.onResourceError || noop).call(null, event));
|
2017-06-21 20:51:06 +00:00
|
|
|
this._pageEvents.on(PageEvents.ConsoleMessage, msg => (this.onConsoleMessage || noop).call(null, msg));
|
|
|
|
this._pageEvents.on(PageEvents.Confirm, message => this._onConfirm(message));
|
|
|
|
this._pageEvents.on(PageEvents.Alert, message => this._onAlert(message));
|
|
|
|
this._pageEvents.on(PageEvents.Dialog, dialog => this._onDialog(dialog));
|
2017-07-06 18:22:32 +00:00
|
|
|
this._pageEvents.on(PageEvents.PageError, error => (this._onError || noop).call(null, error.message, error.stack));
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 21:51:34 +00:00
|
|
|
/**
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
get frameName() {
|
|
|
|
return this._currentFrame.name();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {number}
|
|
|
|
*/
|
|
|
|
get framesCount() {
|
|
|
|
return this._currentFrame.childFrames().length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {!Array<string>}
|
|
|
|
*/
|
|
|
|
get framesName() {
|
|
|
|
return this._currentFrame.childFrames().map(frame => frame.name());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
get focusedFrameName() {
|
|
|
|
let focusedFrame = this._focusedFrame();
|
|
|
|
return focusedFrame ? focusedFrame.name() : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {?Frame}
|
|
|
|
*/
|
|
|
|
_focusedFrame() {
|
|
|
|
let frames = this._currentFrame.childFrames().slice();
|
|
|
|
frames.push(this._currentFrame);
|
|
|
|
let promises = frames.map(frame => frame.evaluate(() => document.hasFocus()));
|
|
|
|
let result = await(Promise.all(promises));
|
|
|
|
for (let i = 0; i < result.length; ++i) {
|
|
|
|
if (result[i])
|
|
|
|
return frames[i];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
switchToFocusedFrame() {
|
|
|
|
let frame = this._focusedFrame();
|
|
|
|
this._currentFrame = frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {(string|number)} frameName
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
switchToFrame(frameName) {
|
|
|
|
let frame = null;
|
|
|
|
if (typeof frameName === 'string')
|
|
|
|
frame = this._currentFrame.childFrames().find(frame => frame.name() === frameName);
|
|
|
|
else if (typeof frameName === 'number')
|
|
|
|
frame = this._currentFrame.childFrames()[frameName];
|
|
|
|
if (!frame)
|
|
|
|
return false;
|
|
|
|
this._currentFrame = frame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
switchToParentFrame() {
|
|
|
|
let frame = this._currentFrame.parentFrame();
|
|
|
|
if (!frame)
|
|
|
|
return false;
|
|
|
|
this._currentFrame = frame;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switchToMainFrame() {
|
|
|
|
this._currentFrame = this._page.mainFrame();
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:07:36 +00:00
|
|
|
get onInitialized() {
|
|
|
|
return this._onInitialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
set onInitialized(value) {
|
|
|
|
if (typeof value !== 'function')
|
|
|
|
this._onInitialized = undefined;
|
|
|
|
else
|
|
|
|
this._onInitialized = value;
|
|
|
|
}
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {?function(!Object, !Request)}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get onResourceRequested() {
|
|
|
|
return this._onResourceRequestedCallback;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {?function(!Object, !Request)} callback
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set onResourceRequested(callback) {
|
|
|
|
this._onResourceRequestedCallback = callback;
|
|
|
|
this._page.setRequestInterceptor(callback ? resourceInterceptor : null);
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-28 06:31:38 +00:00
|
|
|
* @param {!InterceptedRequest} request
|
2017-06-21 20:36:04 +00:00
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
function resourceInterceptor(request) {
|
2017-06-28 06:31:38 +00:00
|
|
|
let requestData = new RequestData(request);
|
|
|
|
let phantomRequest = new PhantomRequest(request);
|
|
|
|
callback(requestData, phantomRequest);
|
|
|
|
if (phantomRequest._aborted)
|
|
|
|
request.abort();
|
|
|
|
else
|
2017-06-21 20:51:06 +00:00
|
|
|
request.continue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onResponseReceived(response) {
|
|
|
|
if (!this.onResourceReceived)
|
|
|
|
return;
|
2017-07-05 07:07:36 +00:00
|
|
|
let phantomResponse = new PhantomResponse(response, false /* isResponseFinished */);
|
|
|
|
this.onResourceReceived.call(null, phantomResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onRequestFinished(request) {
|
|
|
|
if (!this.onResourceReceived)
|
|
|
|
return;
|
|
|
|
let phantomResponse = new PhantomResponse(request.response(), true /* isResponseFinished */);
|
2017-06-29 06:09:28 +00:00
|
|
|
this.onResourceReceived.call(null, phantomResponse);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {string} url
|
|
|
|
* @param {function()} callback
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
includeJs(url, callback) {
|
|
|
|
this._page.addScriptTag(url).then(callback);
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {!{width: number, height: number}}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get viewportSize() {
|
|
|
|
return this._page.viewportSize();
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {!Object}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get customHeaders() {
|
2017-06-29 06:09:28 +00:00
|
|
|
return this._page.httpHeaders();
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Object} value
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set customHeaders(value) {
|
2017-06-29 06:09:28 +00:00
|
|
|
await(this._page.setHTTPHeaders(value));
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {string} filePath
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
injectJs(filePath) {
|
|
|
|
if (!fs.existsSync(filePath))
|
|
|
|
filePath = path.resolve(this.libraryPath, filePath);
|
|
|
|
if (!fs.existsSync(filePath))
|
|
|
|
return false;
|
|
|
|
await(this._page.injectFile(filePath));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get plainText() {
|
|
|
|
return await(this._page.plainText());
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get title() {
|
|
|
|
return await(this._page.title());
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {(function()|undefined)}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get onError() {
|
|
|
|
return this._onError;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {(function()|undefined)} handler
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set onError(handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
handler = undefined;
|
|
|
|
this._onError = handler;
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {(function()|undefined)}
|
2017-05-11 07:06:41 +00:00
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get onConfirm() {
|
|
|
|
return this._onConfirmCallback;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {function()} handler
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set onConfirm(handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
handler = undefined;
|
|
|
|
this._onConfirmCallback = handler;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {(function()|undefined)}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get onAlert() {
|
|
|
|
return this._onAlertCallback;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {function()} handler
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set onAlert(handler) {
|
|
|
|
if (typeof handler !== 'function')
|
|
|
|
handler = undefined;
|
|
|
|
this._onAlertCallback = handler;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Dialog} dialog
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
_onDialog(dialog) {
|
|
|
|
if (dialog.type === 'alert' && this._onAlertCallback) {
|
|
|
|
this._onAlertCallback.call(null, dialog.message());
|
|
|
|
await(dialog.accept());
|
|
|
|
} else if (dialog.type === 'confirm' && this._onConfirmCallback) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let result = this._onConfirmCallback.call(null, dialog.message());
|
2017-06-21 20:51:06 +00:00
|
|
|
await(result ? dialog.accept() : dialog.dismiss());
|
2017-06-21 20:36:04 +00:00
|
|
|
}
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get url() {
|
|
|
|
return await(this._page.url());
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {string} html
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set content(html) {
|
|
|
|
await(this._page.setContent(html));
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-07-10 18:21:46 +00:00
|
|
|
/**
|
|
|
|
* @param {string} selector
|
|
|
|
* @param {(string|!Array<string>)} files
|
|
|
|
*/
|
|
|
|
uploadFile(selector, files) {
|
|
|
|
if (typeof files === 'string')
|
|
|
|
await(this._page.uploadFile(selector, files));
|
|
|
|
else
|
|
|
|
await(this._page.uploadFile(selector, ...files));
|
|
|
|
}
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {string} html
|
|
|
|
* @param {function()=} callback
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
open(url, callback) {
|
|
|
|
console.assert(arguments.length <= 2, 'WebPage.open does not support METHOD and DATA arguments');
|
|
|
|
this._deferEvaluate = true;
|
2017-07-05 07:07:36 +00:00
|
|
|
if (typeof this._onInitialized === 'function')
|
|
|
|
this._onInitialized();
|
2017-06-21 20:51:06 +00:00
|
|
|
this._deferEvaluate = false;
|
2017-07-05 07:07:36 +00:00
|
|
|
this.loading = true;
|
|
|
|
this.loadingProgress = 50;
|
2017-06-21 20:51:06 +00:00
|
|
|
this._page.navigate(url).then(result => {
|
2017-07-05 07:07:36 +00:00
|
|
|
this.loadingProgress = 100;
|
|
|
|
this.loading = false;
|
2017-06-22 20:38:10 +00:00
|
|
|
let status = result ? 'success' : 'fail';
|
2017-06-21 20:51:06 +00:00
|
|
|
if (!result) {
|
|
|
|
this.onResourceError.call(null, {
|
|
|
|
url,
|
|
|
|
errorString: 'SSL handshake failed'
|
2017-05-11 07:06:41 +00:00
|
|
|
});
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
if (this.onLoadFinished)
|
|
|
|
this.onLoadFinished.call(null, status);
|
|
|
|
if (callback)
|
|
|
|
callback.call(null, status);
|
2017-07-05 07:07:36 +00:00
|
|
|
this.loadingProgress = 0;
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!{width: number, height: number}} options
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set viewportSize(options) {
|
|
|
|
await(this._page.setViewportSize(options));
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {function()} fun
|
|
|
|
* @param {!Array<!Object>} args
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
evaluate(fun, ...args) {
|
|
|
|
if (this._deferEvaluate)
|
|
|
|
return await(this._page.evaluateOnInitialized(fun, ...args));
|
2017-07-06 21:51:34 +00:00
|
|
|
return await(this._currentFrame.evaluate(fun, ...args));
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* {string} fileName
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
render(fileName) {
|
|
|
|
if (fileName.endsWith('pdf')) {
|
2017-06-22 20:38:10 +00:00
|
|
|
let options = {};
|
|
|
|
let paperSize = this.paperSize || {};
|
2017-06-21 20:51:06 +00:00
|
|
|
options.margin = paperSize.margin;
|
|
|
|
options.format = paperSize.format;
|
|
|
|
options.landscape = paperSize.orientation === 'landscape';
|
|
|
|
options.width = paperSize.width;
|
|
|
|
options.height = paperSize.height;
|
|
|
|
await(this._page.printToPDF(fileName, options));
|
|
|
|
} else {
|
2017-06-22 20:38:10 +00:00
|
|
|
let options = {};
|
2017-06-21 20:51:06 +00:00
|
|
|
if (this.clipRect && (this.clipRect.left || this.clipRect.top || this.clipRect.width || this.clipRect.height)) {
|
|
|
|
options.clip = {
|
|
|
|
x: this.clipRect.left,
|
|
|
|
y: this.clipRect.top,
|
|
|
|
width: this.clipRect.width,
|
|
|
|
height: this.clipRect.height
|
|
|
|
};
|
|
|
|
}
|
|
|
|
options.path = fileName;
|
|
|
|
await(this._page.screenshot(options));
|
2017-06-21 20:36:04 +00:00
|
|
|
}
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
release() {
|
|
|
|
this._page.close();
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
close() {
|
|
|
|
this._page.close();
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class WebPageSettings {
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Page} page
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
constructor(page) {
|
|
|
|
this._page = page;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {string} value
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
set userAgent(value) {
|
2017-06-29 06:09:28 +00:00
|
|
|
await(this._page.setUserAgent(value));
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
get userAgent() {
|
2017-06-29 06:09:28 +00:00
|
|
|
return this._page.userAgent();
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-28 06:31:38 +00:00
|
|
|
class PhantomRequest {
|
|
|
|
/**
|
|
|
|
* @param {!InterceptedRequest} request
|
|
|
|
*/
|
|
|
|
constructor(request) {
|
|
|
|
this._request = request;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} key
|
|
|
|
* @param {string} value
|
|
|
|
*/
|
|
|
|
setHeader(key, value) {
|
|
|
|
this._request.headers.set(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
abort() {
|
|
|
|
this._aborted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} url
|
|
|
|
*/
|
|
|
|
changeUrl(newUrl) {
|
|
|
|
this._request.url = newUrl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-29 06:09:28 +00:00
|
|
|
class PhantomResponse {
|
|
|
|
/**
|
|
|
|
* @param {!Response} response
|
2017-07-05 07:07:36 +00:00
|
|
|
* @param {boolean} isResponseFinished
|
2017-06-29 06:09:28 +00:00
|
|
|
*/
|
2017-07-05 07:07:36 +00:00
|
|
|
constructor(response, isResponseFinished) {
|
2017-06-29 06:09:28 +00:00
|
|
|
this.url = response.url;
|
|
|
|
this.status = response.status;
|
|
|
|
this.statusText = response.statusText;
|
2017-07-05 07:07:36 +00:00
|
|
|
this.stage = isResponseFinished ? 'end' : 'start';
|
2017-06-29 06:09:28 +00:00
|
|
|
this.headers = [];
|
|
|
|
for (let entry of response.headers.entries()) {
|
|
|
|
this.headers.push({
|
|
|
|
name: entry[0],
|
|
|
|
value: entry[1]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 06:31:38 +00:00
|
|
|
class RequestData {
|
|
|
|
/**
|
|
|
|
* @param {!InterceptedRequest} request
|
|
|
|
*/
|
|
|
|
constructor(request) {
|
|
|
|
this.url = request.url,
|
|
|
|
this.headers = {};
|
2017-06-29 06:09:28 +00:00
|
|
|
for (let entry of request.headers.entries())
|
2017-06-28 06:31:38 +00:00
|
|
|
this.headers[entry[0]] = entry[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-11 07:06:41 +00:00
|
|
|
// To prevent reenterability, eventemitters should emit events
|
|
|
|
// only being in a consistent state.
|
|
|
|
// This is not the case for 'ws' npm module: https://goo.gl/sy3dJY
|
|
|
|
//
|
|
|
|
// Since out phantomjs environment uses nested event loops, we
|
|
|
|
// exploit this condition in 'ws', which probably never happens
|
|
|
|
// in case of regular I/O.
|
|
|
|
//
|
|
|
|
// This class is a wrapper around EventEmitter which re-emits events asynchronously,
|
|
|
|
// helping to overcome the issue.
|
|
|
|
class AsyncEmitter extends EventEmitter {
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-06-21 20:36:04 +00:00
|
|
|
* @param {!Page} page
|
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
constructor(page) {
|
|
|
|
super();
|
|
|
|
this._page = page;
|
|
|
|
this._symbol = Symbol('AsyncEmitter');
|
|
|
|
this.on('newListener', this._onListenerAdded);
|
|
|
|
this.on('removeListener', this._onListenerRemoved);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onListenerAdded(event, listener) {
|
|
|
|
// Async listener calls original listener on next tick.
|
2017-06-22 20:38:10 +00:00
|
|
|
let asyncListener = (...args) => {
|
2017-06-21 20:51:06 +00:00
|
|
|
process.nextTick(() => listener.apply(null, args));
|
|
|
|
};
|
|
|
|
listener[this._symbol] = asyncListener;
|
|
|
|
this._page.on(event, asyncListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onListenerRemoved(event, listener) {
|
|
|
|
this._page.removeListener(event, listener[this._symbol]);
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = WebPage;
|