Changed prime-gaming from Crome to Firefox

This commit is contained in:
root 2022-12-22 12:15:06 +00:00
parent a6f7c6d7e4
commit f435c3db4a
2 changed files with 11 additions and 6 deletions

View file

@ -71,4 +71,4 @@ ENV SCREEN_HEIGHT 1280
ENV SCREEN_DEPTH 24 ENV SCREEN_DEPTH 24
ENTRYPOINT ["entrypoint"] ENTRYPOINT ["entrypoint"]
CMD ["node", "epic-games.js"] CMD ["/bin/bash", "-c", "node epic-games.js && node prime-gaming.js show"]

View file

@ -1,4 +1,4 @@
import { chromium } from 'playwright'; // stealth plugin needs no outdated playwright-extra import { firefox } from 'playwright'; // stealth plugin needs no outdated playwright-extra
import path from 'path'; import path from 'path';
import { dirs, jsonDb, datetime, stealth, filenamify } from './util.js'; import { dirs, jsonDb, datetime, stealth, filenamify } from './util.js';
@ -9,6 +9,8 @@ const headless = !debug && !show;
// const URL_LOGIN = 'https://www.amazon.de/ap/signin'; // wrong. needs some session args to be valid? // const URL_LOGIN = 'https://www.amazon.de/ap/signin'; // wrong. needs some session args to be valid?
const URL_CLAIM = 'https://gaming.amazon.com/home'; const URL_CLAIM = 'https://gaming.amazon.com/home';
const TIMEOUT = 20 * 1000; // 20s, default is 30s const TIMEOUT = 20 * 1000; // 20s, default is 30s
const SCREEN_WIDTH = Number(process.env.SCREEN_WIDTH) || 1280;
const SCREEN_HEIGHT = Number(process.env.SCREEN_HEIGHT) || 1280;
const db = await jsonDb('prime-gaming.json'); const db = await jsonDb('prime-gaming.json');
db.data ||= { claimed: [], runs: [] }; db.data ||= { claimed: [], runs: [] };
@ -22,11 +24,14 @@ const run = {
}; };
// https://playwright.dev/docs/auth#multi-factor-authentication // https://playwright.dev/docs/auth#multi-factor-authentication
const context = await chromium.launchPersistentContext(dirs.browser, { const context = await firefox.launchPersistentContext(dirs.browser, {
// channel: 'chrome', // https://playwright.dev/docs/browsers#google-chrome--microsoft-edge, chrome will not work on arm64 linux, only chromium which is the default headless: false,
headless, viewport: { width: SCREEN_WIDTH, height: SCREEN_HEIGHT },
viewport: { width: 1280, height: 1280 }, userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36',
locale: "en-US", // ignore OS locale to be sure to have english text for locators locale: "en-US", // ignore OS locale to be sure to have english text for locators
args: [ // https://peter.sh/experiments/chromium-command-line-switches
'--hide-crash-restore-bubble',
]
}); });
// TODO test if needed // TODO test if needed