Add some 'load scenario' todo tests

This commit is contained in:
2025-06-16 22:41:31 -07:00
parent 2dfd5cdac3
commit 417a599c5c
3 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
const { Builder } = require('selenium-webdriver'),
chrome = require('selenium-webdriver/chrome.js'),
chromeOptions = new chrome.Options();
chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox');
chromeOptions.enableBidi();
let driver;
beforeEach(async () => {
const builder = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions);
driver = builder.build();
});
it.todo('loads default scenario on initial page load');
it.todo('loads previously-loaded scenario on page refresh');
it.todo('loads built-in scenario from dialog');
it.todo('loads custom scenario directly from file');
it.todo('loads saved scenario from file');
afterEach(async () => {
await driver.quit();
});