hw4: finalize selenoid and ansible workflow with citrus tests

This commit is contained in:
2026-02-27 01:38:06 +03:00
parent c06e9a89f1
commit 7ddea2e997
36 changed files with 1171 additions and 122 deletions

View 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 %}
}
}
}