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?
|
|
|
|||||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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) |
|||||||
|
|
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. |
|||
|
|
|
Russian language documentation http://selenium2.ru/ |
|||
|
|