Releases: TheBookKnight/python_google
Releases · TheBookKnight/python_google
Implement Page Object Model
Page Object Model makes it easier to:
- Build automation scripts quickly. If someone defined the page object and methods already, you can use it.
- More developer friendly. It's easier to understand the test behavior at a higher level
- Easier maintainance so if several page objects change, you can edit it quickly
UnitTest structure
I implemented a UnitTest class structure to make it easier to isolate each future test case.
Installing Dependencies
I installed these important libraries to do a trial run test with Python-Selenium:
- webdriver-manager==2.5.2
- html-testRunner==1.2.1
- selenium==3.141.0