I tried to use Zalenium to run my automation cases. The default driver version is latest like chromedriver is v84 but I wanna to use version 76. Is there any way to change it? My automation is running with TestNG + selenium.
Asked
Active
Viewed 376 times
1 Answers
0
You would need to use one of the docker images that has the versions you need, you can check the releases at elgalu/docker-selenium
here https://github.com/elgalu/docker-selenium/releases

diemol
- 613
- 3
- 10
-
Thank you. Is it possible to mapping local driver and not using selenium container embedded driver? – Lizzy Liu Jul 29 '20 at 22:36
-
I tried with elgalu/docker-selenium and it is working. – Lizzy Liu Jul 29 '20 at 22:37
-
No, it is not possible to use a local driver. The advantage of using the images is to have an environment where things work and has been tested. – diemol Jul 30 '20 at 19:28