ee95bf15d9
This patch leave selenuim-headless non-voting since it was broken for a while so we should be sure that it's stable enough. Related blueprint: improve-horizon-testing Change-Id: Ic2a877a4eefc2f10fb25e64c387b81fc18302a2a
14 lines
271 B
YAML
14 lines
271 B
YAML
---
|
|
- name: download the Gecko WebDriver
|
|
get_url:
|
|
url: "{{ geckodriver_url }}"
|
|
dest: "/tmp/geckodriver.package"
|
|
|
|
- name: extract the Gecko WebDriver
|
|
become: true
|
|
unarchive:
|
|
src: "/tmp/geckodriver.package"
|
|
dest: "/usr/local/bin"
|
|
remote_src: yes
|
|
|