Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't locate an official class/method/properties type API reference for WebDriver anywhere, only the 5 minute guide and 'Next Step' pages located at seleniumhq, plus a few other haphazard descriptions. Does one exist?

share|improve this question
Thank you! They should set up a selenium test to see if it's possible to find a link to this documentation easily...LOL – artfulrobot May 8 at 14:58

6 Answers

up vote 74 down vote accepted

There are javadocs here, rubydocs here, python docs here, .NET docs here

share|improve this answer
8  
Ah good, thank you. I have no idea Selenium don't put these links on their documentation page (or if they're there, made easily findable). – jontyc Apr 13 '11 at 6:08
3  
Google code project is code.google.com/p/selenium. If you need any of the other language docs. – James McMahon Nov 8 '11 at 19:33
3  
Thank you. Why is it so hard for developers to link to documentation on their homepage? After minutes searching and finding nothing of value on seleniumhq, Googling brought me here... – Cerin Oct 29 '12 at 18:14
The project recently moved to Git, so these links point to old versions. s|/svn/trunk/|/git/|, as can be seen in the new links at code.google.com/p/selenium. – Tim Yates Apr 17 at 20:12

The official Python API docs are here: http://selenium.googlecode.com/svn/trunk/docs/api/py/index.html

They're no longer missing the classes that James mentioned in his previous comment.

There's also an unofficial set of python docs here: http://readthedocs.org/docs/selenium-python/en/latest/index.html which is more of a walkthrough.

share|improve this answer

The Javascript Bindings are well commented, but it seems that nobody bothered to genereate some html documentation from them. Anyway, browsing the code and reading the comments is helpful:

http://code.google.com/p/selenium/source/browse/#svn%2Ftrunk%2Fjavascript%2Fwebdriver

Most helpful for me was webdriver.js.

share|improve this answer

I keep a copy of the Python API docs here:

http://goldb.org/sst/selenium2_api_docs/html/

(I generate and update them after each release)

share|improve this answer
Thanks for that, but it looks like they have an official version of the Python docs at selenium.googlecode.com/svn/trunk/docs/api/py/index.html. – James McMahon Nov 8 '11 at 19:25
Perhaps I spoke (typed) too soon. They seems to be missing classes in the official documentation that you have in your docs. – James McMahon Nov 8 '11 at 19:27
@Corey Site is down... "Service Unavailable" – Series8217 Nov 18 '11 at 0:57

Is there anything anywhere that explains how to compile the webdriver based script?

I try with Py2Exe, and it compiles - but the exe fails with an error "webdriver.xpi missing". The file does exist in the selenium directory, so I'm wondering if there is a way to include it - perhaps in the script itself.

Webdriver is a great help - but of little use if I can't compile it into a working exe.

share|improve this answer

Russian language documentation http://selenium2.ru/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.