From bd9ba7a4245dbc900be30b8f50dd33916f5445ef Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Tue, 25 Sep 2018 10:46:46 +0200 Subject: [PATCH 1/2] Fix Selenium usage instructions --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9938725e..d8f792c6 100644 --- a/README.md +++ b/README.md @@ -49,11 +49,14 @@ 1. Download [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) + 2. Download [Selenium Standalone Server](https://www.seleniumhq.org/download/). + 2. Run Selenium server with previously downloaded Chromedriver: ```bash - $ bin/selenium-server-standalone -Dwebdriver.chrome.driver=chromedriver + $ java -Dwebdriver.chrome.driver=chromedriver -jar selenium-server-standalone.jar ``` + 3. Run test application's webserver on `localhost:8080`: ```bash From 16ec1687a3b6d70c152cb729ba2abeb555fad4e4 Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Tue, 25 Sep 2018 10:47:38 +0200 Subject: [PATCH 2/2] Make hostnames match in installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9938725e..1799d134 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ 3. Run test application's webserver on `localhost:8080`: ```bash - $ (cd tests/Application && bin/console server:run 127.0.0.1:8080 -d web -e test) + $ (cd tests/Application && bin/console server:run localhost:8080 -d web -e test) ``` 4. Run Behat: