Skip to content

Commit

Permalink
Merge pull request #46 from ian-rose/fix-chromedriver-protocol
Browse files Browse the repository at this point in the history
Change chromedriver URLs to use https
  • Loading branch information
arknoll authored Mar 16, 2018
2 parents 4fda3ee + bf04e83 commit 9e6fe53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@

- name: Get the latest release for chromedriver
uri:
url: http://chromedriver.storage.googleapis.com/LATEST_RELEASE
url: https://chromedriver.storage.googleapis.com/LATEST_RELEASE
return_content: yes
register: chromedriver_latest
when: selenium_install_chrome
tags: [configuration, selenium, selenium-chrome]

- name: Install chromedriver
unarchive:
src: "http://chromedriver.storage.googleapis.com/{{ chromedriver_latest.content | trim }}/chromedriver_linux64.zip"
src: "https://chromedriver.storage.googleapis.com/{{ chromedriver_latest.content | trim }}/chromedriver_linux64.zip"
dest: /usr/bin
mode: 0755
copy: no
Expand Down

0 comments on commit 9e6fe53

Please sign in to comment.