Compare commits

..

No commits in common. "3b9d743603865d0e2e764666cad8fa5f22f0a6af" and "292e944783d527f72b852141f59c90e59f48700f" have entirely different histories.

View File

@ -75,15 +75,13 @@ test("Cox can start and finish trip", async ({ page }, testInfo) => {
await page.goto("/log");
await page.locator("div:nth-child(2) > .border-0").click();
// Add a minute
const datetimeSelector = '#arrivaljs';
const currentValue = await page.$eval(datetimeSelector, el => el.value);
const currentDate = new Date(currentValue);
currentDate.setMinutes(currentDate.getMinutes() + 1);
currentDate.setHours(currentDate.getHours() + 1);
const newDatetime = currentDate.toISOString().slice(0, 16);
await page.$eval(datetimeSelector, (el, value) => el.value = value, newDatetime);
await page.locator('#arrivaljs').click();
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('ArrowUp');
await page.getByRole("combobox", { name: "Destination" }).click();
await page.getByRole("combobox", { name: "Destination" }).fill("Ottensheim");
@ -161,13 +159,12 @@ test("Kiosk can start and finish trip", async ({ page }, testInfo) => {
await page.locator('div:nth-child(2) > .pt-2 > div > div > div:nth-child(2) > .border-0').click(); // 2 trips currently running, try to close second one
// Add a minute
const datetimeSelector = '#arrivaljs';
const currentValue = await page.$eval(datetimeSelector, el => el.value);
const currentDate = new Date(currentValue);
currentDate.setMinutes(currentDate.getMinutes() + 1);
currentDate.setHours(currentDate.getHours() + 1);
const newDatetime = currentDate.toISOString().slice(0, 16);
await page.$eval(datetimeSelector, (el, value) => el.value = value, newDatetime);
await page.locator('#arrivaljs').click();
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('Tab');
await page.locator('#arrivaljs').press('ArrowUp');
await page.getByRole("combobox", { name: "Destination" }).click();
await page.getByRole("combobox", { name: "Destination" }).fill("Ottensheim");