Skip to content

Releases: TheBookKnight/python_google

Implement Page Object Model

29 May 00:34
Compare
Choose a tag to compare

Page Object Model makes it easier to:

  1. Build automation scripts quickly. If someone defined the page object and methods already, you can use it.
  2. More developer friendly. It's easier to understand the test behavior at a higher level
  3. Easier maintainance so if several page objects change, you can edit it quickly

UnitTest structure

29 May 00:06
Compare
Choose a tag to compare

I implemented a UnitTest class structure to make it easier to isolate each future test case.

Installing Dependencies

28 May 23:47
Compare
Choose a tag to compare

I installed these important libraries to do a trial run test with Python-Selenium:

  1. webdriver-manager==2.5.2
  2. html-testRunner==1.2.1
  3. selenium==3.141.0