workaround for cropped viewport (Playwright regression), fixes #277
This commit is contained in:
parent
7ca79bd413
commit
c3657f05ac
5 changed files with 5 additions and 0 deletions
1
gog.js
1
gog.js
|
|
@ -25,6 +25,7 @@ handleSIGINT(context);
|
|||
if (!cfg.debug) context.setDefaultTimeout(cfg.timeout);
|
||||
|
||||
const page = context.pages().length ? context.pages()[0] : await context.newPage(); // should always exist
|
||||
await page.setViewportSize({ width: cfg.width, height: cfg.height }); // TODO workaround for https://github.com/vogler/free-games-claimer/issues/277 until Playwright fixes it
|
||||
// console.debug('userAgent:', await page.evaluate(() => navigator.userAgent));
|
||||
|
||||
const notify_games = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue