-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile
17 lines (12 loc) · 1.23 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test_linux_chrome_latest:
robot --variable platform:"linux" --variable browserName:Chrome --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot
test_linux_firefox_latest:
robot --variable platform:"linux" --variable browserName:Firefox --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot
test_windows_10_edge_latest:
robot --variable platform:"Windows 10" --variable browserName:MicrosoftEdge --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot
test_windows_10_chrome_latest:
robot --variable platform:"Windows 10" --variable browserName:Chrome --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot
test_mac_firefox_latest:
robot --variable platform:"MacOS Catalina" --variable browserName:Firefox --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot
test_mac_chrome_latest:
robot --variable platform:"MacOS Catalina" --variable browserName:Chrome --variable version:latest --variable visual:true --variable network:true --variable console:true Tests/*.robot