1

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..

1 Answer 1

2

webdriver.js can be built from the selenium sources. You need java and svn to take the following steps:

  1. Get the selenium sources:

    svn checkout http://selenium.googlecode.com/svn/trunk/ selenium-read-only

  2. Change to trunk:

    cd selenium-read-only/trunk

  3. 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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.