Curious about the future of data-driven systems? Join our Data Engineering roundtable and learn how to build scalable data platforms.
Data Engineering: The industry has come a long way from organizing unstructured data to adopting today's modern data pipelines. See how.
Stats
| Reputation: | 258 |
| Pageviews: | 205.9K |
| Articles: | 2 |
| Comments: | 2 |
Comments
Jan 28, 2019 · Gora LEYE
This is because I run tests using docker and web application need a database, so I create a database container before running tests
Sep 02, 2018 · Gora LEYE
this folder (C:\Selenium\drivers) is on docker host not on image. this is suitable for local testing. by local testing I mean dev laptop or continuous integration (CI)
If you are doing CI, you must create a folder C:\Selenium\drivers on build agent and put the driver on.
if this is not suitable for you ,I think you can mount a volume and put webdriver on. https://kubernetes.io/docs/concepts/storage/volumes/
or pull selenium image and run it https://hub.docker.com/u/selenium/
Best regards