This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BrowserStandBy(object): | |
""" | |
This class allows you to put a browser on stand by sending no-op commands to keep | |
a selenium session from timing out. | |
""" | |
def __init__(self, webdriver, max_time=WTF_TIMEOUT_MANAGER.EPIC, sleep=5): | |
""" | |
@param webdriver:Webdriver instance to keep alive. | |
""" |
NewerOlder