Exemple #1
0
 def test_component_can_be_hovered(self):
     self.driver.set_dom_element([By.ID, 'an_id'])
     self.driver.set_expected_command(Command.MOVE_TO, {'sessionId': self.driver.session_id,
                                                        'element': self.driver.get_id_for_stored_element(
                                                            [By.ID, 'an_id'])})
     component = UIComponent(self.driver, 'a_component', [By.ID, 'an_id'])
     ##
     component.hover()
     ##
     assert_that(self.driver.has_fulfilled_expectations(), equal_to(True),
                 "clicking on component should result in hoover command")
Exemple #2
0
 def test_component_can_be_hovered(self):
     self.driver.set_dom_element([By.ID, 'an_id'])
     self.driver.set_expected_command(
         Command.MOVE_TO, {
             'sessionId': self.driver.session_id,
             'element': self.driver.get_id_for_stored_element(
                 [By.ID, 'an_id'])
         })
     component = UIComponent(self.driver, 'a_component', [By.ID, 'an_id'])
     ##
     component.hover()
     ##
     assert_that(self.driver.has_fulfilled_expectations(), equal_to(True),
                 "clicking on component should result in hoover command")