Hi, is it possible to target a specific part of the browser’s page and click without using objects as your reference point? Maybe using some sort of co-ordinate, pixel, or offset?
If so, does anybody have any resources / videos / reading material that I can work from and attempt this?
Cheers.
I don’t know if you can do click without using an object, but you could try:
WebUI.clickOffset(findTestObject('myPage/input_Spot'), X_location, Y_location)
where X_location or Y_location (both integers) are somewhere, or some distance away, from the input_Spot. What you will have to figure out is what are the dimensions of your web page and keep within.