Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 4ac9f78

Browse files
committed
Conflicts: README.md
2 parents 0e2bb0e + ec5c066 commit 4ac9f78

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Protractor
22
==========
33

4-
Protractor is an end to end test framework for Angular applications built on top of webdriver. It is still quite in progress.
4+
Protractor is an end to end test framework for Angular applications built on top of [webdriverJS](https://code.google.com/p/selenium/wiki/WebDriverJs). It is still quite in progress.
55

66
To run the sample tests
77
-----------------------
@@ -10,7 +10,7 @@ Clone the github repository. Install the selenium-webdriver npm module
1010

1111
npm install selenium-webdriver
1212

13-
[Start up a selenium server](http://code.google.com/p/selenium/wiki/WebDriverJs#With_Node). By default, the tests expect the selenium server to be running at http://localhost:4444/wd/hub.
13+
Start up a selenium server. By default, the tests expect the selenium server to be running at http://localhost:4444/wd/hub.
1414

1515
Start the test application
1616

@@ -41,4 +41,17 @@ In your test file, set up protractor:
4141
// Configure and build your webdriver instance.
4242
var ptor = protractor.wrapDriver(driver);
4343

44-
See httpspec.js for examples of use.
44+
See httpspec.js for examples of use.
45+
46+
Appendix A: Setting up a standalone selenium server
47+
---------------------------------------------------
48+
49+
WebdriverJS does not natively include the selenium server - you must start a standalone selenium server.
50+
Download the selenium server. All you need is the latest [selenium-server-standalone.](https://code.google.com/p/selenium/downloads/list)
51+
52+
To use with chrome browsers, [download chromedriver](https://code.google.com/p/chromedriver/downloads/list)
53+
[More information about chromedriver](https://code.google.com/p/selenium/wiki/ChromeDriver)
54+
55+
Start the selenium standalone with
56+
57+
java -jar selenium-server-standalone-2.x.x.jar

0 commit comments

Comments
 (0)