Is there any way in Selenium ide, so that we get list and handlers for all controls provided on any page ? So if we get that we can test that one by one using RC and it'll greatly helpful when there are more then 40 controls on page. In that case it'll become very tiresome to record for all.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In Selenium you can use
In the WebDriver API (to be merged into Selenium 2) there is a
|
|||||||||
|
|
It could be possible to do with getEval and a Javascript routine to examine the DOM. There's an example here for looking for the id's of checkboxes on a page: http://seleniumhq.org/docs/05_selenium_rc.html#executing-javascript-from-your-test |
|||
|
|