Exemple #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)
Exemple #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)
Exemple #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)
Exemple #4
0
 def step_impl(self):
     Selenium.tearDown(self)
 def step_impl(self):
     Selenium.page_has_loaded(self)
 def step_impl(self, Text):
     Selenium.get_elements(self, "text", MyTextElement=Text).click()
 def step_impl(self):
     Selenium.switch_to_parentFrame(self)
 def step_impl(self, locator, text):
     Selenium.select_by_text(self, locator, text)
 def step_impl(self, descripcion):
     Selenium.captura(self, descripcion)
Exemple #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)
Exemple #11
0
 def step_impl(self, entity, subPath, expected):
     Functions.assert_response_expected(self, entity, expected, subPath)
Exemple #12
0
 def step_impl(self):
     Functions.do_a_post(self)
Exemple #13
0
 def step_impl(self, file):
     Functions.set_initial_json_body(self, file)
Exemple #14
0
 def step_impl(self, entity, value):
     Functions.set_body_values(self, entity, value)
Exemple #15
0
 def step_impl(self, code):
     Functions.response_is(self, code)
 def step_impl(self, file):
     Selenium.get_json_file(self, FILE=file)
 def step_impl(self, entity, text):
     Selenium.send_key_text(self, entity, text)
Exemple #18
0
 def step_impl(self, file):
     Functions.expected_results_value(self, file)
 def step_impl(self, testCase):
     Selenium.capturar_pantalla(self, testCase)
Exemple #20
0
 def step_impl(self, entity, expected):
     Functions.new_compare_entity_values(self, entity, expected)
 def step_impl(self, frame):
     Selenium.switch_to_iframe(self, frame)
Exemple #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)
 def step_impl(self, locator):
     Selenium.get_elements(self, locator).click()
Exemple #24
0
 def step_impl(self):
     self.email = Selenium.generate_email(self)
     PageSignIn.send_email_create_an_acccount(self, self.email)
 def step_impl(self, locator):
     Selenium.scroll_to(self, locator)
 def step_impl(self):
     Selenium.abrir_navegador(self)
     Selenium.page_has_loaded(self)
Exemple #27
0
 def step_impl(self, URL):
     Selenium.open_browser(self, URL=URL)
 def step_impl(self, URL):
     Selenium.abrir_navegador(self, URL=URL)
Exemple #29
0
 def open_browser(self):
     Selenium.open_browser(self)        
 def step_impl(self, navegador):
     Selenium.abrir_navegador(self, NAVEGADOR=navegador)