mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Cleanup usages of Page.saveScreenshot of 3b0bc080
The `Page.saveScreenshot` method was removed in favor of a `path` option in the `Page.screenshot` method.
This commit is contained in:
parent
e73d22a564
commit
fce6b71d8e
@ -21,7 +21,7 @@ browser.newPage().then(async page => {
|
||||
await page.setViewportSize({width: 400, height: 400});
|
||||
await page.setContent('<html><body><canvas id="surface"></canvas></body></html>');
|
||||
await page.evaluate(drawColorWheel);
|
||||
await page.saveScreenshot('colorwheel.png');
|
||||
await page.screenshot({path: 'colorwheel.png'});
|
||||
browser.close();
|
||||
});
|
||||
|
||||
|
@ -297,7 +297,7 @@ class WebPage {
|
||||
} else {
|
||||
var options = {};
|
||||
if (this.clipRect && (this.clipRect.left || this.clipRect.top || this.clipRect.width || this.clipRect.height)) {
|
||||
options.clipRect = {
|
||||
options.clip = {
|
||||
x: this.clipRect.left,
|
||||
y: this.clipRect.top,
|
||||
width: this.clipRect.width,
|
||||
@ -305,7 +305,7 @@ class WebPage {
|
||||
};
|
||||
}
|
||||
options.path = fileName;
|
||||
await(this._page.saveScreenshot(fileName, clipRect));
|
||||
await(this._page.screenshot(options));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user