Forum Discussion
Thanks tristaanogre for the quick reply.
I understood the reason why I am getting the error but how should I resolve this?
I tried adding aqUtils.Delay(5000, "Delaying Test Run"); to delay execution and wait for page load but still getting same error.
Any other solution recommended by you?
Does the error just happens after .navigate or .toUrl call ? A sample of your call please and the log concerned
Does the error is systematic on WS2016 ?
Does the error happens on other browser on WS2016 ?
- Shehnaz5 years agoOccasional Contributor
The error happens after navigating to url. In IE, it works fine. Seeing this issue in chrome only, before clicking on link, it fails.
Below is my script -
function Test2()
{
Browsers.Item(btChrome).Run("url");
aqUtils.Delay(10000, "Delaying Test Run");
Aliases.browser.pagePita3.navNavLeft.linkAccountInitialization.Click();
Aliases.browser.pagePita.Wait();
Aliases.browser.BrowserWindow.Close();
}- tristaanogre5 years agoEsteemed Contributor
Shehnaz wrote:
The error happens after navigating to url. In IE, it works fine. Seeing this issue in chrome only, before clicking on link, it fails.
Below is my script -
function Test2()
{
Browsers.Item(btChrome).Run("url");
aqUtils.Delay(10000, "Delaying Test Run");
Aliases.browser.pagePita3.navNavLeft.linkAccountInitialization.Click();
Aliases.browser.pagePita.Wait();
Aliases.browser.BrowserWindow.Close();
}In the code above, at what point do you get the error?
Also, note that Chrome does, sometimes, take longer to resolve a page after being launched since it does a "check for updates" immediately upon running and that can take a few moments. Additionally, there may be extensions, etc., in chrome that need to start up and check for updates as well. So, you have a 10000 hard coded delay there. That MIGHT not be enough for Chrome on startup. I'd actually do a "Wait" on the page after launching the URL and set the timeout to something like 120000 just to make sure that you have the whole page up. So, modified code:
function Test2() { Browsers.Item(btChrome).Run("url"); Aliases.browser.pagePita3.Wait(120000); Aliases.browser.pagePita3.navNavLeft.linkAccountInitialization.Click(); Aliases.browser.pagePita.Wait(); Aliases.browser.BrowserWindow.Close(); }
- Shehnaz5 years agoOccasional Contributor
Hi Robert,
Thank you for sending modified code. But unfortunately, it didn't work , still getting same error after the page loads and before clicking Account Initialization link.
See attached TC logs.
- BenoitB5 years agoCommunity Hero
Could you try without Aliases ?
Related Content
Recent Discussions
- 2 hours ago