Skip to content

Instantly share code, notes, and snippets.

@muditlambda
Created July 15, 2020 15:54
...........................
from selenium import webdriver
...........................
...........................
class Automation_Test(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Firefox()
self.driver.maximize_window()
...........................
...........................
def tearDown(self):
Quit selenium driver
self.driver.quit()
if __name__ == "__main__":
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment