コード例 #1
0
 def step_impl(self, entity, subPath, expected):
     for row in self.table:
         print(row)
         entity = row['Entity']
         subPath = row['Path']
         value = row['Value']
         Functions.assert_response_expected(self, entity, value, subPath)
コード例 #2
0
    def step_impl(self, entity, expected_value):
        for row in self.table:
            print(row)

            entity = row['Entity']
            value = row['Value']

            Functions.assert_json_response_expected(self, entity, value)
コード例 #3
0
    def step_impl(self, entity, value):
        for row in self.table:
            print(row)

            entity = row['Entity']
            value = row['Value']

            Functions.new_compare_entity_values(self, entity, value)
コード例 #4
0
 def step_impl(self):
     Selenium.tearDown(self)
コード例 #5
0
 def step_impl(self):
     Selenium.page_has_loaded(self)
コード例 #6
0
 def step_impl(self, Text):
     Selenium.get_elements(self, "text", MyTextElement=Text).click()
コード例 #7
0
 def step_impl(self):
     Selenium.switch_to_parentFrame(self)
コード例 #8
0
 def step_impl(self, locator, text):
     Selenium.select_by_text(self, locator, text)
コード例 #9
0
 def step_impl(self, descripcion):
     Selenium.captura(self, descripcion)
コード例 #10
0
 def step_impl(self, entity, expected):
     for row in self.table:
         entity = row['Entity']
         value = row['Value']
         Functions.assert_response_expected(self, entity, value)
コード例 #11
0
 def step_impl(self, entity, subPath, expected):
     Functions.assert_response_expected(self, entity, expected, subPath)
コード例 #12
0
 def step_impl(self):
     Functions.do_a_post(self)
コード例 #13
0
 def step_impl(self, file):
     Functions.set_initial_json_body(self, file)
コード例 #14
0
 def step_impl(self, entity, value):
     Functions.set_body_values(self, entity, value)
コード例 #15
0
 def step_impl(self, code):
     Functions.response_is(self, code)
コード例 #16
0
 def step_impl(self, file):
     Selenium.get_json_file(self, FILE=file)
コード例 #17
0
 def step_impl(self, entity, text):
     Selenium.send_key_text(self, entity, text)
コード例 #18
0
 def step_impl(self, file):
     Functions.expected_results_value(self, file)
コード例 #19
0
 def step_impl(self, testCase):
     Selenium.capturar_pantalla(self, testCase)
コード例 #20
0
 def step_impl(self, entity, expected):
     Functions.new_compare_entity_values(self, entity, expected)
コード例 #21
0
 def step_impl(self, frame):
     Selenium.switch_to_iframe(self, frame)
コード例 #22
0
 def step_impl(self, entity, expected):
     for row in self.table:
         entity = row['Entity']
         value = row['Value']
         Functions.new_compare_entity_values(self, entity, value)
コード例 #23
0
 def step_impl(self, locator):
     Selenium.get_elements(self, locator).click()
コード例 #24
0
 def step_impl(self):
     self.email = Selenium.generate_email(self)
     PageSignIn.send_email_create_an_acccount(self, self.email)
コード例 #25
0
 def step_impl(self, locator):
     Selenium.scroll_to(self, locator)
コード例 #26
0
 def step_impl(self):
     Selenium.abrir_navegador(self)
     Selenium.page_has_loaded(self)
コード例 #27
0
 def step_impl(self, URL):
     Selenium.open_browser(self, URL=URL)
コード例 #28
0
 def step_impl(self, URL):
     Selenium.abrir_navegador(self, URL=URL)
コード例 #29
0
 def open_browser(self):
     Selenium.open_browser(self)        
コード例 #30
0
 def step_impl(self, navegador):
     Selenium.abrir_navegador(self, NAVEGADOR=navegador)