Reputation: 35
http://code.google.com/p/selenium/wiki/WebDriverJs#In_the_Browser
Where I can get javascript file "webdriver.js" from
So I can test and use it. Has anyone have done it..
Upvotes: 1
Views: 1031
Reputation: 8074
webdriver.js
can be built from the selenium sources. You need java
and svn
to take the following steps:
Get the selenium sources:
svn checkout http://selenium.googlecode.com/svn/trunk/ selenium-read-only
Change to trunk
:
cd selenium-read-only/trunk
Build webdriver.js
:
./go webdriverjs
This step generates a single javascript file in build/javascript/webdriver/webdriver.js
. You can then go ahead and use this file as described in selenium's wiki.
Upvotes: 2