12 lines
207 B
Python
Executable File
12 lines
207 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
# Necessary imports
|
|
from selenium import webdriver
|
|
from robot.api.logger import info
|
|
|
|
|
|
def teardown_webdriver(driver):
|
|
# Close browser and lean up
|
|
driver.close()
|
|
driver.quit()
|