#8998 Nightly test failure in test_webui/test_realmdomains.py/test_realmdomains/test_add_domain_and_undo - runtime error
Opened 2 years ago by mpolovka. Modified 2 years ago

The nightly test test_add_domain_and_undo is failing with an Runtime Error in [testing_ipa-4.6] Nightly PR #1183 .

The error manifested as

self = <ipatests.test_webui.test_realmdomains.test_realmdomains object at 0x7f015a827b38>

    @screenshot
    def test_add_domain_and_undo(self):
        """
            Add domain and undo
            """
        self.init_app()
        self.navigate_to_entity(ENTITY)

        test_domain = u'itest.bar'

        # add and undo
>       self.add_multivalued('associateddomain', test_domain)

test_webui/test_realmdomains.py:186: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
test_webui/ui_driver.py:806: in add_multivalued
    parent = self.get_form()
test_webui/ui_driver.py:742: in get_form
    form = self.get_facet()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <ipatests.test_webui.test_realmdomains.test_realmdomains object at 0x7f015a827b38>

    def get_facet(self):
        """
            Get currently displayed facet
            """
        facet = self.find('.active-facet', By.CSS_SELECTOR)
>       assert facet is not None, "Current facet not found"
E       AssertionError: Current facet not found

The screenshot shows the runtime error present. Full report


Login to comment on this ticket.

Metadata