t.switchToPreviousWindow Method

Activates the previously active window. Chainable.

t.switchToPreviousWindow()  → this | Promise<any>

If no new windows are open or closed, consecutive method calls cycle between the two most recent windows.

Example

fixture`TestController.switchToPreviousWindow`
    .page('https://testcafe.io/');

test('Switch to the previous window', async t => {
    await t
        .openWindow('https://devexpress.com')
        .switchToPreviousWindow();

    const url = await t.eval(() => document.documentURI);

    await t.expect(url).eql('https://testcafe.io/');
});