12 lines
207 B
Python
12 lines
207 B
Python
|
#!/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()
|