本文整理匯總了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']))
示例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'])
示例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'])
示例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']))