someshg2
13 years agoOccasional Contributor
Cross browser testing code implementation for IE,Firefox and chrome
Hi,
This is regarding the cross browser code implementation with Testcomplete 8.7. We have written code for IE like as below and want to run the same code with Mozilla Firefox (v10.0) and Google Chrome(v17.0) . But some objects are identified with different ID’s from IE to Firefox and Chrome. So our scripts are got failed.
Browser=”IEXPLORE”
Sys.Process(Browser).Page("*").document.all.Item("X_").Click()
Item("X_") is showing on FF and chrome as item(63).
Why they are being different for IE to Firefox and Chrome when basically it supports crossbrowser testing? How do we handle the above problem?