I'm confused about the difference between the Click and ClickAt commands in selenium. Where can I use the ClickAt command?
|
|
||||
|
|
|
Here are what Selenium IDE says about those two commands :
And :
And
If you have a page with form elements, links, buttons, and stuff like that, you'll probably generally use |
|||||
|
|
I noticed some differences between click() and clickAt() when testing a ExtJS app. For example, if I try to click a tab in a Ext.TabPanel, click() command does not work, although I provide it with an correct xpath, and clickAt() works fine. Code looks like this:
doesn't work, but
works. Notice that coordinates are (0,0) I can't figure out why this happens... |
|||
|
|
Be careful when testing clickAt. Sometimes double clicking the command will cause it to show up red. You will change the line to try other alternatives but nothing will work. But then run your script and the clickAt line will be fine with whatever you type in. |
|||
|
|
|
There is a dojo widget at our application which only works with Don't know why, but only |
||||
|
|
|
I'm testing a GWT application and it seems like I have to use clickAt if I want to click on a node in a tree widget. |
|||
|
|
