hw4: finalize selenoid and ansible workflow with citrus tests
This commit is contained in:
26
ansible/roles/selenoid/templates/browsers.json.j2
Normal file
26
ansible/roles/selenoid/templates/browsers.json.j2
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"chrome": {
|
||||
"default": "{{ selenoid_chrome_versions | first }}",
|
||||
"versions": {
|
||||
{% for version in selenoid_chrome_versions %}
|
||||
"{{ version }}": {
|
||||
"image": "selenoid/vnc:chrome_{{ version }}",
|
||||
"port": "4444",
|
||||
"path": "/"
|
||||
}{% if not loop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
}
|
||||
},
|
||||
"firefox": {
|
||||
"default": "{{ selenoid_firefox_versions | first }}",
|
||||
"versions": {
|
||||
{% for version in selenoid_firefox_versions %}
|
||||
"{{ version }}": {
|
||||
"image": "selenoid/vnc:firefox_{{ version }}",
|
||||
"port": "4444",
|
||||
"path": "/wd/hub"
|
||||
}{% if not loop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user