You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'client.playwrightVersion': clientPlaywrightVersion// Playwright version being used on your local project needs to be passed in this capability for BrowserStack to be able to map request and responses correctly
expect(title).to.equal("BrowserStack - Google Search",'Expected page title is incorrect!');
38
+
// following line of code is responsible for marking the status of the test on BrowserStack as 'passed'. You can use this code in your after hook after each test
awaitpage.evaluate(_=>{},`browserstack_executor: ${JSON.stringify({action: 'setSessionStatus',arguments: {status: 'failed',reason: 'Title did not match'}})}`);
0 commit comments