Skip to content

Commit d6b53db

Browse files
committed
Start README for both Chrome and Firefox Nodes
More will need to come soon! Part of SeleniumHQ#5
1 parent 5c1bd00 commit d6b53db

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

NodeChrome/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Selenium Grid Node - Chrome
2+
3+
Selenium Node configured to run Google Chrome.
4+
5+
## How to use this image
6+
7+
First, you will need a Selenium Grid Hub that the Node will connect to.
8+
9+
```
10+
$ docker run -d -P --name selenium-hub selenium/hub
11+
```
12+
13+
Once the hub is up and running will want to launch nodes that can run tests. You can run as many nodes as you wish.
14+
15+
```
16+
$ docker run -d --link selenium-hub:hub selenium/node-chrome
17+
```
18+
19+
## What is Selenium?
20+
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
21+
22+
Selenium has the support of some of the largest browser vendors who have taken (or are taking) steps to make Selenium a native part of their browser. It is also the core technology in countless other browser automation tools, APIs and frameworks.
23+
24+
See the Selenium [site](http://docs.seleniumhq.org/) for documation on usage within your test code.

NodeFirefox/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Selenium Grid Node - Chrome
2+
3+
Selenium Node configured to run Google Chrome.
4+
5+
## How to use this image
6+
7+
First, you will need a Selenium Grid Hub that the Node will connect to.
8+
9+
```
10+
$ docker run -d -P --name selenium-hub selenium/hub
11+
```
12+
13+
Once the hub is up and running will want to launch nodes that can run tests. You can run as many nodes as you wish.
14+
15+
```
16+
$ docker run -d --link selenium-hub:hub selenium/node-chrome
17+
```
18+
19+
## What is Selenium?
20+
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
21+
22+
Selenium has the support of some of the largest browser vendors who have taken (or are taking) steps to make Selenium a native part of their browser. It is also the core technology in countless other browser automation tools, APIs and frameworks.
23+
24+
See the Selenium [site](http://docs.seleniumhq.org/) for documation on usage within your test code.

0 commit comments

Comments
 (0)