mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-14 19:44:06 +00:00
ccf3fcc485
rework BaseTestCase to use 2 drivers and setup\teardown classmethods; move all preconditions for tests to setup\teardown classmethods.
19 lines
334 B
Python
19 lines
334 B
Python
from datetime import datetime
|
|
|
|
|
|
class BasePageObject(object):
|
|
|
|
def __init__(self, driver):
|
|
self.driver = driver
|
|
|
|
def get_url(self, url):
|
|
self.driver.get(url)
|
|
|
|
def refresh(self):
|
|
self.driver.refresh()
|
|
|
|
@property
|
|
def time_now(self):
|
|
return datetime.now().strftime('%-m%-d%-H%-M%-S')
|
|
|