Skip to content

Commit

Permalink
Adds support for chrome 80/81 drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
vijetmahabaleshwar-okta committed Apr 26, 2020
1 parent 0068dc0 commit ff24a79
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions scripts/update-se-drivers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,15 @@ function setChromeDriverVersion() {
CHROME_DRIVER_VER=78.0.3904.70
;;
79)
CHROME_DRIVER_VER=79.0.3945.36
CHROME_DRIVER_VER=79.0.3945.36
;;
*)
80)
CHROME_DRIVER_VER=80.0.3987.16
;;
81)
CHROME_DRIVER_VER=81.0.4044.69
;;
*)
CHROME_DRIVER_VER=${DEFAULT_CHROME_DRIVER_VER}
;;
esac
Expand Down

0 comments on commit ff24a79

Please sign in to comment.