mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
16 lines
242 B
Python
16 lines
242 B
Python
'''
|
|
This will help pass webdriver (Browser instance) across our test cases.
|
|
'''
|
|
|
|
|
|
|
|
from selenium import webdriver
|
|
|
|
DRIVER = None
|
|
|
|
def getOrCreateWebdriver():
|
|
global DRIVER
|
|
DRIVER = DRIVER or webdriver.Firefox()
|
|
return DRIVER
|
|
|