Mocking time in Playwright

personaltestingtypescript
type
Post
summary
I want to test something in playwright that requires time to advance a day during the test, how can I do it?
status
Published
tags
personal
testing
typescript
edited
Mar 27, 2024 12:35 AM
slug
playwright-mock-time
date
Mar 26, 2024
I want to test something in playwright that requires time to advance a day during the test, how can I do it?
@p01 left a helpful comment on this github issue, with the idea to mock Date.now, and I’ve modified it a little bit to be able to control it during the test

Setup:

beforeEach to setup methods to call during test - example
test.beforeEach(async ({ page }) => { // Set the date that you'd like your tests to start at ///////////////////////////////////////////////// const fakeNow = new Date("2023-05-12T01:30").valueOf(); await page.addInitScript(`{ window.__minutesPassed = 0; // create functions to modify "minutesPassed" ///////////////////////////////////////////////// window.advanceTimeOneMinute = () => { console.log("TIME ADVANCING TO " + ++window.__minutesPassed + " MINUTE(S) PASSED."); } // mock date.now ///////////////////////////////////////////////// Date.now = () => { return ${fakeNow} + window.__minutesPassed * 60000; } // mock constructor ///////////////////////////////////////////////// Date = class extends Date { constructor(...args) { (args.length === 0) ? super(${fakeNow} + window.__minutesPassed * 60000) : super(...args) } } }`);
 

Using the methods you’ve setup:

////////////////////////////// ////// in a test util file elsewhere // export const advanceTimeOneMinute = async (page: Page) => // await page.evaluate(() => { // (window as any).advanceTimeOneMinute(); // }); ////////////////////////////// test("Defaults to the current datetime", async ({ page }) => { await advanceTimeOneMinute(page); await advanceTimeOneMinute(page); await page.getByText("Submit").click(); const expectedTime = add(mockedClockDate, { minutes: 2 }); await expect(page.getByTestId("datetime-input")).toHaveValue( new RegExp(dateToDatetimeFieldValue(expectedTime)) ); });
 

© Ben Mitchinson 2017 - 2024

Source Code