Skip to content

Commit 9dcb31e

Browse files
authored
updating windows install to setup everything and add to the env vars (#20)
* updating windows install to setup everything and add to the env vars * updating git ignore
1 parent 290da81 commit 9dcb31e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,4 @@ buildNumber.properties
173173

174174
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
175175
hs_err_pid*
176+
/.idea/libraries/

windows_install.bat

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ title Setting up your machine for Selenium Testing!
33

44
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
55

6-
choco install firefox
7-
choco install googlechrome
8-
choco install phantomjs
9-
choco install selenium-all-drivers
6+
choco install firefox -y
7+
choco install googlechrome -y
8+
choco install phantomjs -y
9+
choco install selenium-all-drivers -y
10+
choco install jdk8 -y
11+
choco install maven -y
12+
SETX PATH "%PATH%;C:\tools\selenium"

0 commit comments

Comments
 (0)