示例#1
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.element = ElementKeywords(ctx)
示例#2
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
示例#3
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     ctx._original_element_finder = ElementFinder(ctx)
     self.element_finder = DummyFinder(ctx)
示例#4
0
 def __init__(self, ctx, arg1, arg2):
     LibraryComponent.__init__(self, ctx)
     self.arg1 = arg1
     self.arg2 = arg2
示例#5
0
def test_timeout_as_none(lib: LibraryComponent):
    assert lib.get_timeout(None) == 5.0
示例#6
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     <Init-function-goes-here>
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.element_management = SeleniumElementKeywords(ctx)
 def __init__(self, ctx, *args):
     LibraryComponent.__init__(self, ctx)
     self.args = args
示例#9
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._screenshot_index = {}
     self._screenshot_path_stack = []
     self.screenshot_root_directory = None
示例#10
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.logger = get_logger("SeleniumProxy")
     self.logger.debug("BrowserKeywords_{}".format(ctx))
     self.manager = BrowserManagementKeywords(ctx)
示例#11
0
def lib():
    ctx = mock()
    ctx.timeout = 5.0
    return LibraryComponent(ctx)
示例#12
0
def test_timeout_as_timedelta(lib: LibraryComponent):
    assert lib.get_timeout(timedelta(seconds=0.1)) == 0.1
示例#13
0
def test_timeout_as_float(lib: LibraryComponent):
    assert lib.get_timeout(1.0) == 1.0
示例#14
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._new_creator = NewWebDriverCreator(self.log_dir)
示例#15
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     raise ValueError("Error in import")
示例#16
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._window_manager = WindowManager(ctx)
     self._webdriver_creator = WebDriverCreator(self.log_dir)
示例#17
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     ctx.event_firing_webdriver = "should be last"
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._window_manager = WindowManager()
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.event_firing_webdriver = 'event_firing_webdriver'
示例#20
0
 def __init__(self, ctx, arg, *varargs, **kwargs):
     LibraryComponent.__init__(self, ctx)
     self.arg = arg
     self.varargs = varargs
     self.kwargs = kwargs
示例#21
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.waiting_management = WaitingKeywords(ctx)
     self.browser_management = BrowserManagementKeywords(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.elementkeywords_management = ElementKeywords(ctx)
     self.waiting_management = WaitingKeywords(ctx)
示例#23
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.manager = BrowserManagementKeywords(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.form_element = FormElementKeywords(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     ctx._original_element_finder = ElementFinder(ctx)
     self.element_finder = DummyFinder(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
示例#27
0
 def __init__(self, ctx, arg1, arg2, *args, **kwargs):
     LibraryComponent.__init__(self, ctx)
     self.arg1 = arg1
     self.arg2 = arg2
     self.args = args
     self.kwargs = kwargs
示例#28
0
 def __init__(self, ctx, **kwargs):
     LibraryComponent.__init__(self, ctx)
     self.kwargs = kwargs
示例#29
0
 def __init__(self, ctx):
     self.crypto = CryptoUtility()
     LibraryComponent.__init__(self, ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.element_management = SeleniumElementKeywords(ctx)
     self.formelement_management = FormElementKeywords(ctx)
     self.waiting_management = WaitingKeywords(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.logger = get_logger("SeleniumProxy")
     self.logger.debug("HTTPKeywords_{}".format(ctx))
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._window_manager = WindowManager(ctx)
 def __init__(self, ctx, arg1, arg2):
     LibraryComponent.__init__(self, ctx)
     self.arg1 = arg1
     self.arg2 = arg2
 def __init__(self, ctx, **kwargs):
     LibraryComponent.__init__(self, ctx)
     self.kwargs = kwargs
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._screenshot_index = {}
     self._screenshot_path_stack = []
     self.screenshot_root_directory = None
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.element = ElementKeywords(ctx)
示例#37
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.form_element = FormElementKeywords(ctx)
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     raise ValueError('Error in import')
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._table_element_finder = TableElementFinder(ctx)