Forum Discussion

clwild's avatar
clwild
Occasional Contributor
10 years ago

Google Chrome v36

Is Google Chrome v36 supported in Test Complete 10.3?



My simple Jscript can't click the 'Login' button and fails with the overlapped window.

ie. form.submitbuttonLogin.ClickButton();

 

I've also enabled the 'Ignore Overlapped Window' in my project and added SetFocus on the Login button.  But it still fails.  Any help?


 



  browser = Aliases.browser;


  page = browser.pageSupportSmartbearComSamplesTe;


  form = page.formAspnetform;


  form.textboxMaincontentUsername.SetText("tester");


  passwordBox = form.passwordboxMaincontentPassword;


  passwordBox.SetText("test");


  form.submitbuttonLogin.ClickButton();


  page.Wait();


  page.formAspnetform.linkLogout.Click();


  page.Wait();


  browser.BrowserWindow.Close();


 


}

20 Replies