I would like to know if there are complete tutorials on Selenium web driver. I am using the IDE to record test cases and exporting them as junit/webdriverbacked to eclipse. I have just started using selenium. So, can you help me find some more detailed and advanced tutorials. Most of the test cases work just fine with FF but its not always the case when i use IE and at times i get varying result for the same test case(no modification made).
Share
5minutes manual.getting started with selenium .see here
about setting up IE driver you can get here
common idea of setting up IDE for selenium tests:
1) i use IDEA + maven
2) so you simply create maven project + add appropriate dependency in local pom file:
org.seleniumhq.selenium
selenium-java
2.24.1
then maven automatically suggest autoimport of all the needed.
Then you can simply pass you code you generated by selenium IDE in approptiate java file(e.g):
And run the test. enjoy)