Selenium
Last updated
Last updated
Selenium is an umbrella project for a range of tools and libraries that enable and support the automation of web browsers.
Selenium is many things but at its core, it is a toolset for web browser automation that uses the best techniques available to remotely control browser instances and emulate a user’s interaction with the browser.
Here's how to integrate Thordata with Selenium.
Install Selenium Wire to extend Selenium's Python bindings because using the default Selenium module for implementing proxies that require authentication makes the whole process complicated. You can do it using the pip
command: pip install selenium-wire
Another recommended package for this integration is webdriver-manager
. It's a package that simplifies the management of binary drivers for different browsers. In this case, there's no need to manually download a new version of a web driver after each update.
You can install the webdriver-manager
using the pip
command as well: pip install webdriver-manager
Full Code Example: