Issue
I want to use selenium in the spyder/Jupyter-notebook, but I can not download the driver. Is it possible to somehow use selenium without download the driver, like in collab version
Solution
Selenium is a tool that mainly enables and supports automation of web browsers. Therefore, it does require a web driver at the back-end. From the docs:
To use Selenium in your automation project you need to install the language bindings libraries for your language of choice. In addition you will need WebDriver binaries for the browsers you want to automate and run test on.
Moreover, looking at the repo you can see that it does require a driver depending on which browser you plan to use.
If you cannot install a driver because of policy restrictions, speak to your admin and explain why you need it; they might be able to install it for you.
Answered By - PApostol
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.