Closed mudrd8mz closed 5 years ago
As per https://www.seleniumhq.org/download/ and https://docs.moodle.org/dev/Acceptance_testing/Browsers/Working_combinations_of_OS%2BBrowser%2Bselenium we want to use the latest selenium 3.141.59 now.
However, when running mdk behat --selenium-download the version 3.9.1 is downloaded.
mdk behat --selenium-download
I suspect that is because how
matches = sorted(re.findall(r'[a-z0-9/._-]+selenium-server-standalone-[0-9.]+\.jar', content, re.I))
in behat.py sorts the versions and I think that 3.9.1 is evaluated as higher than 3.141.59 ?
behat.py
Thanks for the report David.
As per https://www.seleniumhq.org/download/ and https://docs.moodle.org/dev/Acceptance_testing/Browsers/Working_combinations_of_OS%2BBrowser%2Bselenium we want to use the latest selenium 3.141.59 now.
However, when running
mdk behat --selenium-download
the version 3.9.1 is downloaded.I suspect that is because how
in
behat.py
sorts the versions and I think that 3.9.1 is evaluated as higher than 3.141.59 ?