Skip to content

Commit 7f6d2f9

Browse files
author
Davide Moro
committed
reorganize capabilities
1 parent 1c1edcd commit 7f6d2f9

File tree

16 files changed

+55
-48
lines changed

16 files changed

+55
-48
lines changed

{{cookiecutter.project_slug}}/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ RUN pip3 install --upgrade pip \
77
tox
88

99
ENTRYPOINT [ "tox"]
10-
CMD ["-epy36", "--", "-vvv", "--splinter-webdriver=remote", "--variables=credentials_template.yml", "--splinter-remote-url=http://{{cookiecutter.browserstack_username}}:{{cookiecutter.browserstack_access_key}}@hub.browserstack.com:80/wd/hub", "--variables=capabilities/WIN10-FIREFOX53.json"]
10+
CMD ["-epy36", "--", "-vvv", "--splinter-webdriver=remote", "--variables=credentials_template.yml", "--splinter-remote-url=http://{{cookiecutter.browserstack_username}}:{{cookiecutter.browserstack_access_key}}@hub.browserstack.com:80/wd/hub", "--variables capabilities/os/WIN10.json", "--variables capabilities/browsers/chrome/CHROME59.json", "--variables capabilities/resolutions/1280x1024.json"]

{{cookiecutter.project_slug}}/capabilities/WIN10-CHROME59.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

{{cookiecutter.project_slug}}/capabilities/WIN10-EDGE15.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

{{cookiecutter.project_slug}}/capabilities/WIN10-FIREFOX53.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

{{cookiecutter.project_slug}}/capabilities/WIN10-IE11.json

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"capabilities": {
3+
"browser": "Chrome"
4+
}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"capabilities": {
3+
"browser": "Chrome",
4+
"browser_version": "59.0"
5+
}
6+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"capabilities": {
3+
"browser": "Edge"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"capabilities": {
3+
"browser": "Firefox"
4+
}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"capabilities": {
3+
"browser": "Firefox",
4+
"browser_version": "53.0"
5+
}
6+
}

0 commit comments

Comments
 (0)