I'm having a problem with my continuous integration, using Selenium IDE I can use clickAt
, but while trying to build the "program" in eclipse I always get the error saying that clickAt
is an "Unsupported command", what should I do ?
1 Answer 1
I always get the error saying that clickAt is an "Unsupported command"
You will get this when converting Selenium IDE code to any language. It simply means that the webdriver version you are using doesn't have a 1-to-1 functionality match with the IDE options.
what should I do ?
-
thank you @kirbycope but still it didnt work...i'm a begginer! i need to make a while loop that will be clicking on some specific places located by id. any idea ?Tarik Kaoukab– Tarik Kaoukab2015年08月11日 08:10:36 +00:00Commented Aug 11, 2015 at 8:10
-
What you were trying was by pixel position. Using Selenium selectors is really simple if you have ID's. Do a quick Google search, there are tons of blogs and such that cover selectors.kirbycope– kirbycope2015年08月11日 23:26:18 +00:00Commented Aug 11, 2015 at 23:26