Reputation: 768
In Watir we have a grid of all elements and how they can be discovered (here). In Watir-Webdriver we do not. Is there a grid online, or a way to discover what attributes can be used on what elements?
Upvotes: 1
Views: 620
Reputation: 1856
They are pretty much the same as the Watir ones, when converting my test scripts from Watir to web driver I didn't find any that were not supported.
The class list on the API Docs http://jarib.github.com/watir-webdriver/doc/# will show you all the elements supported.
Upvotes: 1