How to navigate to a particular URL with with Python-UnitTest?
Hello Matthew-phillips,
You can refer to the sample code snippet below:
# tearDown runs after each test case
def tearDown(self):
self.driver.quit()
def test_unit_user_should_able_to_add_item(self):
# try:
driver = self.driver
# Url
driver.get("https://lambdatest.github.io/sample-todo-app/")