BurhanH / TestAutomationCourse-python-ui-project

Python UI project for Test Automation Course
MIT License
7 stars 10 forks source link

Tests added #5

Closed mariasmart7 closed 2 years ago

mariasmart7 commented 2 years ago

I added some tests for page https://demoqa.com/ Can you check if i did everything correct? Thanks

BurhanH commented 2 years ago

@mariasmart7 one test is failing in CI/CD (TestBrowser.test_books_link) You have three options here: 1 - fix the test 2 - skip test via @unittest.skip("need fix") tag 3 - or just remove it from file

Thanks