2) The code should be able to run just fine AFAIK. The Selenium 1.0
API is still there, although it is not being worked on any more, other
than an occasional bug fix, maybe. You can also consider switching to
WebDriver and using WebDriverBackedSelenium. That would mean only
your start up and ending code would be different and most (but not
quite all) of the Selenium 1.0 code would work unchanged.
3) The Webdriver support can help get you away from the issue of
JavaScript behavior that could affect how different browsers would
react to Selenium 1.0 methods, because it uses native events to better
simulate user interaction with the browser.
I am using the WebDriverBackedSelenium methods because my team is not
as used to using Java methodology and I think the WebDriver model has
a steeper learning curve. There is also an export filter for TestNG
using WebDriverBackedSelenium, so if you use the IDE to generate your
test code you are able to take advantage of it to help learn how to
use it.
Mike
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.