This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathMakefile
62 lines (48 loc) · 2.61 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
all: fetch fetch_vms
fetch: selenium-server deuac IEDriver
fetch_vms: IE11-Win7 IE10-Win7 IE9-Win7 IE8-Win7
IE11-Win7:
curl -O -L "https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VirtualBox/IE11/Windows/IE11.Win7.For.Windows.VirtualBox.zip"
unzip IE11.Win7.For.Windows.VirtualBox.zip
mkdir VMs || true
mv IE11\ -\ Win7.ova VMs
rm IE11.Win7.For.Windows.VirtualBox.zip
IE10-Win7:
curl -O -L "https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VirtualBox/IE10/Windows/IE10.Win7.For.Windows.VirtualBox.zip"
unzip IE10.Win7.For.Windows.VirtualBox.zip
mkdir VMs || true
mv IE10\ -\ Win7.ova VMs
rm IE10.Win7.For.Windows.VirtualBox.zip
IE9-Win7:
curl -O -L "https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VirtualBox/IE9/Windows/IE9.Win7.For.Windows.VirtualBox.zip"
unzip IE9.Win7.For.Windows.VirtualBox.zip
mkdir VMs || true
mv IE9\ -\ Win7.ova VMs
rm IE9.Win7.For.Windows.VirtualBox.zip
IE8-Win7:
curl -O -L "https://az412801.vo.msecnd.net/vhd/VMBuild_20141027/VirtualBox/IE8/Windows/IE8.Win7.For.Windows.VirtualBox.zip"
unzip IE8.Win7.For.Windows.VirtualBox.zip
mkdir VMs || true
mv IE8\ -\ Win7.ova VMs
rm IE8.Win7.For.Windows.VirtualBox.zip
selenium-server:
curl -o Tools/selenium_conf/selenium-server-standalone.jar -L http://selenium-release.storage.googleapis.com/2.44/selenium-server-standalone-2.44.0.jar
deuac:
curl -o Tools/deuac.iso -L https://github.com/tka/SeleniumBox/blob/master/deuac.iso?raw=true
IEDriver:
curl -o Tools/selenium_conf/IEDriverServer.zip -L http://selenium-release.storage.googleapis.com/2.44/IEDriverServer_Win32_2.44.0.zip
#curl -o Tools/selenium_conf/IEDriverServer.zip -L http://selenium-release.storage.googleapis.com/2.44/IEDriverServer_x64_2.44.0.zip
cd Tools/selenium_conf && unzip IEDriverServer.zip
# Not using this as we are using vm only for IE
chromedriver:
curl -o Tools/selenium_conf/chromedriver.zip -L http://chromedriver.storage.googleapis.com/2.15/chromedriver_win32.zip
cd Tools/selenium_conf && unzip chromedriver.zip
# Commenting command line jre download as this is broken, oracle has include some sort of hash in download url, need to fix this
#Tools/jre-windows-i586.exe:
# curl -j -o Tools/jre-windows-i586.exe -L -O -H "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u151-b12/jre-8u151-windows-i586.exe
# Not using this as we are using vm only for IE
firefox:
curl -o Tools/firefox.exe -L "https://download.mozilla.org/?product=firefox-34.0.5-SSL&os=win&lang=en-GB"
# Not using this as we are using vm only for IE
chrome:
curl -o Tools/chrome.exe -L "https://dl.google.com/update2/installers/ChromeStandaloneSetup.exe"