Esempio n. 1
0
 def test_page_inherits_super_pages_components(self):
     self.two_comp_page = TwoComponentsSubPage().open()
     try:
         body = self.two_comp_page.body
         found = True
     except AttributeError:
         found = False
     self.assertTrue(
         found,
         "body attribute should exist when inheriting from super class")
 def test_page_inherits_super_pages_components(self):
     self.two_comp_page = TwoComponentsSubPage().open()
     try:
         body = self.two_comp_page.body
         found = True
     except AttributeError:
         found = False
     self.assertTrue(found, "body attribute should exist when inheriting from super class")
 def setUp(self):
     super(ComponentTestCase, self).setUp()
     self.set_baseurl_env()
     self.result_page_with_str_locator = ResultPage()
     self.result_page_with_dom_strategy_locator = ResultPageWithDOMStrategyLocator()
     self.homepage = HomePage()
     self.homepage_with_dom_toggler = HomePageWithDOMAdvancedToggler()
     self.two_comp_page = TwoComponentsPage()
Esempio n. 4
0
 def setUp(self):
     super(ComponentTestCase, self).setUp()
     self.set_baseurl_env()
     self.result_page_with_str_locator = ResultPage()
     self.result_page_with_dom_strategy_locator = ResultPageWithDOMStrategyLocator(
     )
     self.homepage = HomePage()
     self.homepage_with_dom_toggler = HomePageWithDOMAdvancedToggler()
     self.two_comp_page = TwoComponentsPage()
 def test_page_overrides_super_pages_components(self):
     self.two_comp_page = TwoComponentsSubPage().open()
     paras = self.two_comp_page.paras
     self.assertEqual(len(paras), 1, "Overridden locator for paras should return just the last one")
class ComponentTestCase(BaseTestCase):
    def setUp(self):
        super(ComponentTestCase, self).setUp()
        self.set_baseurl_env()
        self.result_page_with_str_locator = ResultPage()
        self.result_page_with_dom_strategy_locator = ResultPageWithDOMStrategyLocator()
        self.homepage = HomePage()
        self.homepage_with_dom_toggler = HomePageWithDOMAdvancedToggler()
        self.two_comp_page = TwoComponentsPage()


    def test_selenium_implicit_wait_not_reset_within_component(self):
        self.result_page_with_str_locator.open()

        self.assertEquals(
            self.result_page_with_str_locator.get_selenium_implicit_wait(),
            "10 seconds"
        )

        self.assertEquals(
            self.result_page_with_str_locator.result.get_selenium_implicit_wait(),
            "10 seconds"
        )

    def test_get_instance_and_instances(self):
        # Test get_instance and get_instances in same test. get_instance()
        # get_instances() are called by the component admin class to set
        # component instances on the page object.
        # In the same component admin, get_instance and get_instances
        # are called so we can access the result, or results object(s).
        # You'd use get_instance() if you expected only one
        # instance, and get_instances() if you expected > 1.
        # Normally, of course, in the admin class, you'd call only
        # one of these, not both.
        self.result_page_with_str_locator.open()
        self.assertNotEquals(type(self.result_page_with_str_locator.result), list)

        # Should get the first result since we are accessing "result", not "results".
        self.assertEquals(self.result_page_with_str_locator.result.price, "$14.00")

        # Now access "results" in the plural.
        self.assertEquals(len(self.result_page_with_str_locator.results), 3)
        self.assertEquals(self.result_page_with_str_locator.results[0].price, "$14.00")

    def test_locator_as_dom(self):
        self.result_page_with_dom_strategy_locator.open()
        results = self.result_page_with_dom_strategy_locator.results

        # The locator uses DOM strategy to get the nodes via a call
        # to execute_javascript() and limits to 2 results, just
        # to make sure we are testing the right thing.
        self.assertEquals(len(results), 2)
        # Check that the result object works.
        self.assertEquals(results[0].price, "$14.00")

    def test_component_inside_component(self):
        # A component should be able to contain other components. You'd access
        # sub component by accessing the sub component name as a property on the
        # parent component.

        # These tests import the page classes directly, instead of going
        # through run_scenario(), which is inconsistent with the rest of the
        # Python tests. We do this because it's just clearer and easier to
        # debug. We should probably clean up the other tests to do the same.
        # See QAR-47882.

        # We don't see the need for writing these tests in both Robot and Python
        # because we already feel confident that page objects perform the same
        # in both contexts, as the other tests show.
        self.homepage.open()
        search_component = self.homepage.search

        self.homepage.textfield_value_should_be("id=q", "", "The search component's input doesn't start blank")
        search_component.set_search_term("foo")
        self.homepage.textfield_value_should_be("id=q", "foo", "Search component can't set a search value")

        # Access a sub component
        advanced_option_toggler_component = search_component.advancedoptiontoggler

        self.homepage.element_should_not_be_visible("id=advanced-search-content")
        advanced_option_toggler_component.open()
        self.homepage.element_should_be_visible("id=advanced-search-content")

    def test_component_inside_component_with_dom(self):
        # When you have a component inside another component, the parent should be
        # able to search for the child using the child's locator. The child's locator
        # should be interpreted with reference to the parent's reference_webelement.

        self.homepage_with_dom_toggler.open()
        search_component = self.homepage_with_dom_toggler.searchcomponentwithdomadvancedtoggler
        advanced_option_toggler_component = search_component.advancedoptiontoggler

    def test_use_selectors_to_get_non_child_element(self):
        self.homepage.open()
        toggler = self.homepage.search.advancedoptiontoggler
        toggler.open()
        self.assertEquals(toggler.advanced_text, "These are advanced options")

    def test_page_inherits_from_multiple_components(self):
        paras = self.two_comp_page.open().paras
        self.assertTrue(len(paras) > 1, "Locator for body component is being used, so not finding "
                                        "more than one paragraph component on page")
    def test_calling_log_from_component(self):
        self.homepage.open()

        attr_err_raised = False
        try:
            self.homepage.get_some_property()
        except AttributeError:
            attr_err_raised = True

        self.assertFalse(attr_err_raised, "AttributeError raised when trying to call log() from a component")

    def test_page_inherits_super_pages_components(self):
        self.two_comp_page = TwoComponentsSubPage().open()
        try:
            body = self.two_comp_page.body
            found = True
        except AttributeError:
            found = False
        self.assertTrue(found, "body attribute should exist when inheriting from super class")

    def test_page_overrides_super_pages_components(self):
        self.two_comp_page = TwoComponentsSubPage().open()
        paras = self.two_comp_page.paras
        self.assertEqual(len(paras), 1, "Overridden locator for paras should return just the last one")

    def test_page_override_without_override_class_raises_warning(self):
        run = self.run_scenario("test_page_override_without_override_class.py", env={"PYTHONPATH": self.po_dir})
        self.assert_run(run, expected_returncode=0, search_output="KeyOverrideWarning")

    def tearDown(self):
        super(ComponentTestCase, self).tearDown()
        self.result_page_with_str_locator.close()
        self.result_page_with_dom_strategy_locator.close()
        self.homepage.close()
        self.two_comp_page.close()
Esempio n. 7
0
 def test_page_overrides_super_pages_components(self):
     self.two_comp_page = TwoComponentsSubPage().open()
     paras = self.two_comp_page.paras
     self.assertEqual(
         len(paras), 1,
         "Overridden locator for paras should return just the last one")
Esempio n. 8
0
class ComponentTestCase(BaseTestCase):
    def setUp(self):
        super(ComponentTestCase, self).setUp()
        self.set_baseurl_env()
        self.result_page_with_str_locator = ResultPage()
        self.result_page_with_dom_strategy_locator = ResultPageWithDOMStrategyLocator(
        )
        self.homepage = HomePage()
        self.homepage_with_dom_toggler = HomePageWithDOMAdvancedToggler()
        self.two_comp_page = TwoComponentsPage()

    def test_selenium_implicit_wait_not_reset_within_component(self):
        self.result_page_with_str_locator.open()

        self.assertEquals(
            self.result_page_with_str_locator.get_selenium_implicit_wait(),
            "10 seconds")

        self.assertEquals(
            self.result_page_with_str_locator.result.
            get_selenium_implicit_wait(), "10 seconds")

    def test_get_instance_and_instances(self):
        # Test get_instance and get_instances in same test. get_instance()
        # get_instances() are called by the component admin class to set
        # component instances on the page object.
        # In the same component admin, get_instance and get_instances
        # are called so we can access the result, or results object(s).
        # You'd use get_instance() if you expected only one
        # instance, and get_instances() if you expected > 1.
        # Normally, of course, in the admin class, you'd call only
        # one of these, not both.
        self.result_page_with_str_locator.open()
        self.assertNotEquals(type(self.result_page_with_str_locator.result),
                             list)

        # Should get the first result since we are accessing "result", not "results".
        self.assertEquals(self.result_page_with_str_locator.result.price,
                          "$14.00")

        # Now access "results" in the plural.
        self.assertEquals(len(self.result_page_with_str_locator.results), 3)
        self.assertEquals(self.result_page_with_str_locator.results[0].price,
                          "$14.00")

    def test_locator_as_dom(self):
        self.result_page_with_dom_strategy_locator.open()
        results = self.result_page_with_dom_strategy_locator.results

        # The locator uses DOM strategy to get the nodes via a call
        # to execute_javascript() and limits to 2 results, just
        # to make sure we are testing the right thing.
        self.assertEquals(len(results), 2)
        # Check that the result object works.
        self.assertEquals(results[0].price, "$14.00")

    def test_component_inside_component(self):
        # A component should be able to contain other components. You'd access
        # sub component by accessing the sub component name as a property on the
        # parent component.

        # These tests import the page classes directly, instead of going
        # through run_scenario(), which is inconsistent with the rest of the
        # Python tests. We do this because it's just clearer and easier to
        # debug. We should probably clean up the other tests to do the same.
        # See QAR-47882.

        # We don't see the need for writing these tests in both Robot and Python
        # because we already feel confident that page objects perform the same
        # in both contexts, as the other tests show.
        self.homepage.open()
        search_component = self.homepage.search

        self.homepage.textfield_value_should_be(
            "id=q", "", "The search component's input doesn't start blank")
        search_component.set_search_term("foo")
        self.homepage.textfield_value_should_be(
            "id=q", "foo", "Search component can't set a search value")

        # Access a sub component
        advanced_option_toggler_component = search_component.advancedoptiontoggler

        self.homepage.element_should_not_be_visible(
            "id=advanced-search-content")
        advanced_option_toggler_component.open()
        self.homepage.element_should_be_visible("id=advanced-search-content")

    def test_component_inside_component_with_dom(self):
        # When you have a component inside another component, the parent should be
        # able to search for the child using the child's locator. The child's locator
        # should be interpreted with reference to the parent's reference_webelement.

        self.homepage_with_dom_toggler.open()
        search_component = self.homepage_with_dom_toggler.searchcomponentwithdomadvancedtoggler
        advanced_option_toggler_component = search_component.advancedoptiontoggler

    def test_use_selectors_to_get_non_child_element(self):
        self.homepage.open()
        toggler = self.homepage.search.advancedoptiontoggler
        toggler.open()
        self.assertEquals(toggler.advanced_text, "These are advanced options")

    def test_page_inherits_from_multiple_components(self):
        paras = self.two_comp_page.open().paras
        self.assertTrue(
            len(paras) > 1,
            "Locator for body component is being used, so not finding "
            "more than one paragraph component on page")

    def test_calling_log_from_component(self):
        self.homepage.open()

        attr_err_raised = False
        try:
            self.homepage.get_some_property()
        except AttributeError:
            attr_err_raised = True

        self.assertFalse(
            attr_err_raised,
            "AttributeError raised when trying to call log() from a component")

    def test_page_inherits_super_pages_components(self):
        self.two_comp_page = TwoComponentsSubPage().open()
        try:
            body = self.two_comp_page.body
            found = True
        except AttributeError:
            found = False
        self.assertTrue(
            found,
            "body attribute should exist when inheriting from super class")

    def test_page_overrides_super_pages_components(self):
        self.two_comp_page = TwoComponentsSubPage().open()
        paras = self.two_comp_page.paras
        self.assertEqual(
            len(paras), 1,
            "Overridden locator for paras should return just the last one")

    def test_page_override_without_override_class_raises_warning(self):
        run = self.run_scenario("test_page_override_without_override_class.py",
                                env={"PYTHONPATH": self.po_dir})
        self.assert_run(run,
                        expected_returncode=0,
                        search_output="KeyOverrideWarning")

    def tearDown(self):
        super(ComponentTestCase, self).tearDown()
        self.result_page_with_str_locator.close()
        self.result_page_with_dom_strategy_locator.close()
        self.homepage.close()
        self.two_comp_page.close()