Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updating windows install to setup everything and add to the env vars
  • Loading branch information
andrewmkrug committed Jan 28, 2017
commit 0117d15fe2c6c7581695f5b50ea964d491785a2f
11 changes: 7 additions & 4 deletions windows_install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ title Setting up your machine for Selenium Testing!

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

choco install firefox
choco install googlechrome
choco install phantomjs
choco install selenium-all-drivers
choco install firefox -y
choco install googlechrome -y
choco install phantomjs -y
choco install selenium-all-drivers -y
choco install jdk8 -y
choco install maven -y
SETX PATH "%PATH%;C:\tools\selenium"