import { Selector } from 'testcafe'; // first import testcafe selectors import { ClientFunction } from 'testcafe'; fixture `Getting Started` // declare the fixture .page `file:///C:/Users/tgd014/Documents/agentins3/nwjs-sdk-v0.25.2-win-x64/AutomationCode/Samplecode.html`; // specify the start page //then create a test and place your code there test('My first test', async t => { await t.maximizeWindow() await t.click("body > table > tbody > tr > td.index > div > table > tbody > tr:nth-child(2) > td.startButton > table"); //await t.debug(); await t.wait(10000) });