In the last chapter, you became acquainted with a unit test framework, pytest. You should now be somewhat comfortable with writing unit tests with the pytest framework. In this chapter, you learn about the webdriver framework called Selenium.
Introduction to Selenium
Selenium is a webdriver framework. It is used for browser automation. It means that you can open a browser program (or a browser app) programmatically. All the browser operations that you perform manually can be performed programmatically with ...