Skip to content

Commit da79cec

Browse files
update references to GitHub and DockerHub
1 parent 5bdd804 commit da79cec

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ in the shell, or snippets of how you are using the JavaScript API.
1717

1818
## Logs
1919
It is helpful to include any logs that selenium-standalone outputs to help diagnose issues.
20-
Take a look at the [README](https://github.com/vvo/selenium-standalone/blob/main/README.md#debug-logs-for-selenium-standalone-process) for how
20+
Take a look at the [README](https://github.com/webdriverio/selenium-standalone/blob/main/README.md#debug-logs-for-selenium-standalone-process) for how
2121
to enable debug log statements that will help us even more than the standard output logs.
2222

2323
If there are lots of logs, please link to [a public gist](https://gist.github.com/).

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
# list of Docker images to use as base name for tags
4949
images: |
50-
vvoyer/selenium-standalone
50+
webdriverio/selenium-standalone
5151
# generate Docker tags based on the following events/attributes
5252
tags: |
5353
type=schedule

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Feel free to work on any issue with [pr welcome](https://github.com/vvo/selenium-standalone/issues?q=is%3Aissue+is%3Aopen+label%3A%22pr+welcome%22) label or suggest your changes/improvements!
3+
Feel free to work on any issue with [pr welcome](https://github.com/webdriverio/selenium-standalone/issues?q=is%3Aissue+is%3Aopen+label%3A%22pr+welcome%22) label or suggest your changes/improvements!
44

55
Any help is appreciated!
66

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
1414

1515
# selenium-standalone
16-
[![dependencies Status](https://david-dm.org/vvo/selenium-standalone/status.svg)](https://david-dm.org/vvo/selenium-standalone)
17-
[![devDependencies Status](https://david-dm.org/vvo/selenium-standalone/dev-status.svg)](https://david-dm.org/vvo/selenium-standalone?type=dev)
16+
[![dependencies Status](https://david-dm.org/webdriverio/selenium-standalone/status.svg)](https://david-dm.org/webdriverio/selenium-standalone)
17+
[![devDependencies Status](https://david-dm.org/webdriverio/selenium-standalone/dev-status.svg)](https://david-dm.org/webdriverio/selenium-standalone?type=dev)
1818

1919
> A node based CLI library for launching [Selenium](http://www.seleniumhq.org/download/) with WebDrivers support.
2020
@@ -46,7 +46,7 @@ npx selenium-standalone install && npx selenium-standalone start
4646
*As a Docker service*
4747

4848
```shell
49-
docker run -it -p 4444:4444 vvoyer/selenium-standalone
49+
docker run -it -p 4444:4444 webdriverio/selenium-standalone
5050
```
5151

5252
![screencast](screencast.gif)

docker/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ selenium-standalone Server with Chrome and Firefox
2222
## Build image
2323

2424
```
25-
docker build -t vvoyer/selenium-standalone . --rm
25+
docker build -t webdriverio/selenium-standalone . --rm
2626
```
2727

2828
## Use image
2929

3030
```
31-
$ docker run -it -p 4444:4444 vvoyer/selenium-standalone
31+
$ docker run -it -p 4444:4444 webdriverio/selenium-standalone
3232
```
3333

3434
### Parameters
@@ -38,7 +38,7 @@ $ docker run -it -p 4444:4444 vvoyer/selenium-standalone
3838
* Default: `1920x1080x16`
3939
* Usage example: set screen size to 1200x1200 with 8bits depth
4040
```
41-
$ docker run -it -p 4444:4444 -e SCREEN_GEOMETRY="1200x1200x8" vvoyer/selenium-standalone
41+
$ docker run -it -p 4444:4444 -e SCREEN_GEOMETRY="1200x1200x8" webdriverio/selenium-standalone
4242
```
4343
4444
* `DEBUG` Enable selenium-standalone debug messages
@@ -47,11 +47,11 @@ $ docker run -it -p 4444:4444 vvoyer/selenium-standalone
4747
* Usage example:
4848
* Enable debug when building the image
4949
```
50-
$ docker build --build-arg DEBUG=selenium-standalone:* -t vvoyer/selenium-standalone . --rm
50+
$ docker build --build-arg DEBUG=selenium-standalone:* -t webdriverio/selenium-standalone . --rm
5151
```
5252
* Enable debug when running the image
5353
```
54-
$ docker run -it -p 4444:4444 -e DEBUG="selenium-standalone:*" vvoyer/selenium-standalone
54+
$ docker run -it -p 4444:4444 -e DEBUG="selenium-standalone:*" webdriverio/selenium-standalone
5555
```
5656
5757
### Healthcheck
@@ -62,7 +62,7 @@ This defines a _health_ status attached to the running container. It checks that
6262
6363
#### Use cases
6464
65-
* Manually check the status of a running `vvoyer/selenium-standalone` container
65+
* Manually check the status of a running `webdriverio/selenium-standalone` container
6666
6767
```
6868
docker ps
@@ -76,7 +76,7 @@ This defines a _health_ status attached to the running container. It checks that
7676
7777
```
7878
# Start container in detached mode, forcing its name to `sel-std`
79-
docker run --rm --name=sel-std -d -p 4444:4444 vvoyer/selenium-standalone
79+
docker run --rm --name=sel-std -d -p 4444:4444 webdriverio/selenium-standalone
8080

8181
# Will loop until container `sel-std` (you can also check via container id) health status is exactly `healthy`
8282
while ! docker inspect --format='{{json .State.Health}}' sel-std | grep -sq '"healthy"'; do sleep 1; done

docs/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ arch [sometimes](https://code.google.com/p/selenium/issues/detail?id=5116#c9).
7676

7777
`opts.fullURL` as an alternative to baseURL it's possible specify full url, ex `https://selenium-release.storage.googleapis.com/4.0-alpha-7/selenium-server-4.0.0-alpha-7.jar`.
7878

79-
`opts.ignoreExtraDrivers` only downloads and installs drivers explicity specified. Broken https://github.com/vvo/selenium-standalone/issues/421
79+
`opts.ignoreExtraDrivers` only downloads and installs drivers explicity specified. Broken https://github.com/webdriverio/selenium-standalone/issues/421
8080

8181
`opts.basePath` sets the base directory used to store the selenium standalone `.jar` and drivers. Defaults to current working directory + .selenium/
8282

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
},
2323
"repository": {
2424
"type": "git",
25-
"url": "[email protected]:vvo/selenium-standalone.git"
25+
"url": "[email protected]:webdriverio/selenium-standalone.git"
2626
},
2727
"bugs": {
28-
"url": "https://github.com/vvo/selenium-standalone/issues"
28+
"url": "https://github.com/webdriverio/selenium-standalone/issues"
2929
},
30-
"homepage": "https://github.com/vvo/selenium-standalone",
30+
"homepage": "https://github.com/webdriverio/selenium-standalone",
3131
"author": "Vincent Voyer <[email protected]>",
3232
"license": "MIT",
3333
"husky": {

0 commit comments

Comments
 (0)