@@ -12,7 +12,7 @@ Selenium may be installed via npm with
12
12
13
13
Out of the box, Selenium includes everything you need to work with Firefox. You
14
14
will need to download additional components to work with the other major
15
- browsers. The drivers for Chrome, PhantomJS, Opera, and Microsoft's IE and Edge
15
+ browsers. The drivers for Chrome, PhantomJS, Opera, and Microsoft's IE and Edge
16
16
web browsers are all standalone executables that should be available on your
17
17
[ PATH] ( http://en.wikipedia.org/wiki/PATH_%28variable%29 ) . The SafariDriver
18
18
browser extension should be installed in your browser before using Selenium; we
@@ -23,7 +23,7 @@ installing the extension in a profile only used for testing.
23
23
| ----------------- | ---------------------------------- |
24
24
| Chrome | [ chromedriver(.exe)] [ chrome ] |
25
25
| Internet Explorer | [ IEDriverServer.exe] [ release ] |
26
- | Edge | [ MicrosoftWebDriver.msi] [ edge ] |
26
+ | Edge | [ MicrosoftWebDriver.msi] [ edge ] |
27
27
| PhantomJS | [ phantomjs(.exe)] [ phantomjs ] |
28
28
| Opera | [ operadriver(.exe)] [ opera ] |
29
29
| Safari | [ SafariDriver.safariextz] [ release ] |
@@ -34,8 +34,8 @@ The sample below and others are included in the `example` directory. You may
34
34
also find the tests for selenium-webdriver informative.
35
35
36
36
var webdriver = require('selenium-webdriver'),
37
- By = require('selenium- webdriver') .By,
38
- until = require('selenium- webdriver') .until;
37
+ By = webdriver.By,
38
+ until = webdriver.until;
39
39
40
40
var driver = new webdriver.Builder()
41
41
.forBrowser('firefox')
0 commit comments