當前位置: 首頁>>代碼示例>>Python>>正文


Python MozTrapManageSuitesPage.is_element_present方法代碼示例

本文整理匯總了Python中pages.manage_suites_page.MozTrapManageSuitesPage.is_element_present方法的典型用法代碼示例。如果您正苦於以下問題:Python MozTrapManageSuitesPage.is_element_present方法的具體用法?Python MozTrapManageSuitesPage.is_element_present怎麽用?Python MozTrapManageSuitesPage.is_element_present使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pages.manage_suites_page.MozTrapManageSuitesPage的用法示例。


在下文中一共展示了MozTrapManageSuitesPage.is_element_present方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_that_user_can_create_and_delete_suite

# 需要導入模塊: from pages.manage_suites_page import MozTrapManageSuitesPage [as 別名]
# 或者: from pages.manage_suites_page.MozTrapManageSuitesPage import is_element_present [as 別名]
    def test_that_user_can_create_and_delete_suite(self, mozwebqa_logged_in, product):
        manage_suites_pg = MozTrapManageSuitesPage(mozwebqa_logged_in)

        suite = self.create_suite(mozwebqa_logged_in, product, use_API=False)

        manage_suites_pg.filter_form.filter_by(lookup='name', value=suite['name'])

        Assert.true(manage_suites_pg.is_element_present(*suite['locator']))

        manage_suites_pg.delete_suite(name=suite['name'])

        Assert.false(manage_suites_pg.is_element_present(*suite['locator']))
開發者ID:smillaedler,項目名稱:moztrap-tests,代碼行數:14,代碼來源:test_manage_suites_page.py

示例2: test_that_user_can_create_and_delete_suite

# 需要導入模塊: from pages.manage_suites_page import MozTrapManageSuitesPage [as 別名]
# 或者: from pages.manage_suites_page.MozTrapManageSuitesPage import is_element_present [as 別名]
    def test_that_user_can_create_and_delete_suite(self, base_url, selenium, login, product):
        manage_suites_pg = MozTrapManageSuitesPage(base_url, selenium)

        suite = self.create_suite(base_url, selenium, product)

        manage_suites_pg.filter_form.filter_by(lookup='name', value=suite['name'])

        assert manage_suites_pg.is_element_present(*suite['locator'])

        manage_suites_pg.delete_suite(name=suite['name'])

        assert not manage_suites_pg.is_element_present(*suite['locator'])
開發者ID:carcablop,項目名稱:moztrap-tests,代碼行數:14,代碼來源:test_manage_suites_page.py

示例3: test_that_user_can_create_and_delete_suite

# 需要導入模塊: from pages.manage_suites_page import MozTrapManageSuitesPage [as 別名]
# 或者: from pages.manage_suites_page.MozTrapManageSuitesPage import is_element_present [as 別名]
    def test_that_user_can_create_and_delete_suite(self, mozwebqa_logged_in):
        manage_suites_pg = MozTrapManageSuitesPage(mozwebqa_logged_in)

        suite = self.create_suite(mozwebqa_logged_in)

        manage_suites_pg.filter_suites_by_name(name=suite['name'])

        Assert.true(manage_suites_pg.is_element_present(*suite['locator']))

        manage_suites_pg.delete_suite(name=suite['name'])

        Assert.false(manage_suites_pg.is_element_present(*suite['locator']))

        self.delete_product(mozwebqa_logged_in, product=suite['product'])
開發者ID:AlinT,項目名稱:moztrap-tests,代碼行數:16,代碼來源:test_manage_suites_page.py

示例4: test_that_user_can_create_suite_and_add_some_cases_to_it

# 需要導入模塊: from pages.manage_suites_page import MozTrapManageSuitesPage [as 別名]
# 或者: from pages.manage_suites_page.MozTrapManageSuitesPage import is_element_present [as 別名]
    def test_that_user_can_create_suite_and_add_some_cases_to_it(self, mozwebqa_logged_in):
        manage_suites_pg = MozTrapManageSuitesPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)
        cases = [self.create_case(mozwebqa=mozwebqa_logged_in, product=product) for i in range(3)]

        suite = self.create_suite(mozwebqa=mozwebqa_logged_in, product=product, case_name_list=[case['name'] for case in cases])

        manage_suites_pg.filter_form.filter_by(lookup='name', value=suite['name'])
        Assert.true(manage_suites_pg.is_element_present(*suite['locator']))

        manage_test_cases_pg = manage_suites_pg.view_cases(name=suite['name'])

        for case in cases:
            Assert.true(manage_test_cases_pg.is_element_present(*case['locator']))
開發者ID:AndreiH,項目名稱:moztrap-tests,代碼行數:17,代碼來源:test_manage_suites_page.py


注:本文中的pages.manage_suites_page.MozTrapManageSuitesPage.is_element_present方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。