コード例 #1
0
ファイル: waiting.py プロジェクト: bikashgupta11/javarobot
 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
ファイル: test_get_timeout.py プロジェクト: nhutnb22/DieuAuto
def test_timeout_as_none(lib: LibraryComponent):
    assert lib.get_timeout(None) == 5.0
コード例 #6
0
ファイル: file_name2.py プロジェクト: nyonnguyen/rbfgenerator
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     <Init-function-goes-here>
コード例 #7
0
 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
ファイル: screenshot.py プロジェクト: bikashgupta11/javarobot
 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
ファイル: test_get_timeout.py プロジェクト: nhutnb22/DieuAuto
def lib():
    ctx = mock()
    ctx.timeout = 5.0
    return LibraryComponent(ctx)
コード例 #12
0
ファイル: test_get_timeout.py プロジェクト: nhutnb22/DieuAuto
def test_timeout_as_timedelta(lib: LibraryComponent):
    assert lib.get_timeout(timedelta(seconds=0.1)) == 0.1
コード例 #13
0
ファイル: test_get_timeout.py プロジェクト: nhutnb22/DieuAuto
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
ファイル: FailPlugin.py プロジェクト: nhutnb22/DieuAuto
 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"
コード例 #18
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._window_manager = WindowManager()
コード例 #19
0
 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)
コード例 #22
0
 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)
コード例 #24
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.form_element = FormElementKeywords(ctx)
コード例 #25
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     ctx._original_element_finder = ElementFinder(ctx)
     self.element_finder = DummyFinder(ctx)
コード例 #26
0
 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)
コード例 #30
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.element_management = SeleniumElementKeywords(ctx)
     self.formelement_management = FormElementKeywords(ctx)
     self.waiting_management = WaitingKeywords(ctx)
コード例 #31
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self.logger = get_logger("SeleniumProxy")
     self.logger.debug("HTTPKeywords_{}".format(ctx))
コード例 #32
0
 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
コード例 #35
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._screenshot_index = {}
     self._screenshot_path_stack = []
     self.screenshot_root_directory = None
コード例 #36
0
 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)
コード例 #38
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     raise ValueError('Error in import')
コード例 #39
0
 def __init__(self, ctx):
     LibraryComponent.__init__(self, ctx)
     self._table_element_finder = TableElementFinder(ctx)