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
I am testing , the landing screen and the search screen have same url and I am giving different start and stop. I am getting the results but with Coach error,
ERROR: URL generated the following errors in the coach {
"performance": {
"jquery": "window.jQuery.fn is undefined"
}
}
I am testing , the landing screen and the search screen have same url and I am giving different start and stop. I am getting the results but with Coach error,
ERROR: URL generated the following errors in the coach {
"performance": {
"jquery": "window.jQuery.fn is undefined"
}
}
Code:
await commands.measure.start('03_landing screen');
await commands.click.byXpathAndWait('//*[@id="biait_Item_1_text"]');
await commands.wait.byPageToComplete();
await commands.wait.byTime(10000);
await commands.measure.stop();
await commands.wait.byTime(5000);
//Search
await commands.navigate('Same url as above', 'TransS');
await commands.wait.byPageToComplete();
await commands.wait.byTime(10000);
await commands.click.byXpathAndWait('//[@id="flex-main-search-h"]');
await commands.wait.byTime(10000);
await commands.click.byXpathAndWait('//[@id="Search_sc_Num"]');
await commands.addText.byXpath('ABC', '//[@id="Search_sc_Num"]');
await commands.wait.byTime(10000);
await commands.measure.start('04_Search_Screen');
await commands.click.byXpathAndWait('//[@id="Search_b"]');
await commands.wait.byPageToComplete();
await commands.wait.byTime(20000);
await commands.measure.stop();
await commands.wait.byTime(5000);
Unable to share the URL. Executing using docker and firefox and version of sitespeed.io is 25.7.3
The text was updated successfully, but these errors were encountered: