WIP: add fullscreen and download save abilities

This commit is contained in:
2025-06-16 22:41:30 -07:00
parent 2c18004cde
commit 73cbf3e6dd
6 changed files with 70 additions and 9 deletions

View File

@@ -2,20 +2,44 @@ const { Builder, By } = require('selenium-webdriver'),
chrome = require('selenium-webdriver/chrome.js'),
{ expect, it } = require('@jest/globals'),
chromeOptions = new chrome.Options(),
{ mkdir, writeFile } = require('node:fs/promises'),
{ mkdir, writeFile, symlink, unlink } = require('node:fs/promises'),
path = require('path');
chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox');
let driver;
beforeAll(async () => {
await symlink('../../../test/map1.svg', 'public/assets/images/test_map.svg');
});
beforeEach(async () => {
driver = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build();
console.log('manage', await driver.manage());
await driver.get('http://localhost:3005');
});
it('loads the page', async () => {
it.only('loads the page', async () => {
expect(await driver.getTitle()).toEqual('Infantry Combat Solo Basic');
// console.log('window', window);
// takeScreenshot(driver);
// var start = new Date().getTime();
// await driver.executeAsyncScript(
// 'window.setTimeout(arguments[arguments.length - 1], 500);').
// then(function() {
// console.log(
// 'Elapsed time: ' + (new Date().getTime() - start) + ' ms');
// });
// await driver.executeScript(`return __dirname`).then(function (e) {
// console.log('e', e);
// });
// console.log('client', await driver.executeScript(`return document.querySelect('object');`));
});
it('selects an off-board soldier', async () => {
@@ -34,6 +58,10 @@ afterEach(async () => {
await driver.quit();
});
afterAll(async () => {
await unlink('public/assets/images/test_map.svg');
});
async function takeScreenshot(driver) {
const dir = './test/screenshots';
const fileName = path.relative(process.cwd(), __filename) + ' "' + expect.getState().currentTestName + `" ${new Date().toISOString()}.png`;

4
test/map1.svg Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" standalone="no"?>
<svg viewBox="-5 -5 10 10" xmlns="http://www.w3.org/2000/svg">
<circle r="5" fill="purple"/>
</svg>

After

Width:  |  Height:  |  Size: 140 B