My TestComplete version is 10.50.2702.7 and my browser version is IE 11.
The script replay will fail even for the very simple script from recording.
Currently the namemapping looks like this. The page object canot be found in the current namemapping.
Set table = Aliases.theBrowser.IEFrame.FrameTab.tabpage.panel.panelHttpsTestAdjudicareNetLogin.paneAdjudicare.table.cell.table
It used to be like this:
Aliases.theBrowser.pageAdjudicare.formCtl01.tableLoginpage.cell.panelContainer.fieldset.table
Is that because my current TestComplete Version doesn't support the IE11? Please advise.
Here is the script that I recored when searching "google" from Google website. The script fails after I click "Run Current Routine".
Sub Test12 Dim iexplore Dim pane Dim comboBox Dim grouping Set iexplore = Aliases.theBrowser Set pane = iexplore.IEFrame.FrameTab.tabpage.panel.panelHttpsWwwGoogleCa.paneGoogle Set comboBox = pane.groupingGoogleInstantIsUnavailab.comboboxSearch Call comboBox.ClickR(343, 15) iexplore.popupContext.menuitemPaste.Click Call comboBox.Keys("g") Call pane.groupingIMFeelingLuckyGoogleIMFe.comboboxSearch.Keys("oo") Set grouping = pane.groupingIMFeelingLuckyGoogleIMFe2 Call grouping.comboboxSearch.Keys("gle") grouping.buttonGoogleSearch.ClickButton End Sub