本文整理汇总了Python中pages.home_page.HomePage.click_create_lib_btn方法的典型用法代码示例。如果您正苦于以下问题:Python HomePage.click_create_lib_btn方法的具体用法?Python HomePage.click_create_lib_btn怎么用?Python HomePage.click_create_lib_btn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pages.home_page.HomePage
的用法示例。
在下文中一共展示了HomePage.click_create_lib_btn方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testShouldCheckLibDeactivateAndActivate
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def testShouldCheckLibDeactivateAndActivate(self, mozwebqa):
homepage_obj = HomePage(mozwebqa)
loginpage_obj = LoginPage(mozwebqa)
dashboardpage_obj = DashboardPage(mozwebqa)
librarypage_obj = LibraryEditorPage(mozwebqa)
homepage_obj.go_to_home_page()
homepage_obj.header.click_signin()
loginpage_obj.login()
Assert.true(dashboardpage_obj.is_the_current_page)
# go back to homepage, create a new library to work with
dashboardpage_obj.header.click_home_logo()
homepage_obj.click_create_lib_btn()
library_name = librarypage_obj.library_name
librarypage_obj.header.click_dashboard()
#Click on the private button to make it private and then check that the library is not in the list anymore
dashboardpage_obj.library(library_name).click_private()
Assert.false(dashboardpage_obj.library(library_name).is_displayed, "Library %s found" % library_name)
#Go to the private libraries page and check that the library that you just made private is present there.
#Click on public to make it public and check on the dashboard that the library is present there.
dashboardpage_obj.click_private_libraries_link()
Assert.true(dashboardpage_obj.library(library_name).is_displayed, "Library %s not found" % library_name)
# Switch it back to public - it should disappaer
dashboardpage_obj.library(library_name).click_public()
Assert.false(dashboardpage_obj.library(library_name).is_displayed, "Library %s found" % library_name)
# Go to main dashboard, should be present
dashboardpage_obj.header.click_dashboard()
Assert.true(dashboardpage_obj.library(library_name).is_displayed, "Library %s not found" % library_name)
dashboardpage_obj.delete_test_data()
示例2: test_search_by_library_name_returns_library
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def test_search_by_library_name_returns_library(self, mozwebqa):
homepage_obj = HomePage(mozwebqa)
loginpage_obj = LoginPage(mozwebqa)
dashboard_obj = DashboardPage(mozwebqa)
librarypage_obj = LibraryEditorPage(mozwebqa)
searchpage_obj = SearchPage(mozwebqa)
homepage_obj.go_to_home_page()
homepage_obj.header.click_signin()
loginpage_obj.login()
#create a new library with the valid criteria (version not initial)
dashboard_obj.header.click_home_logo()
homepage_obj.click_create_lib_btn()
librarypage_obj.type_library_version('searchable')
librarypage_obj.click_save()
searchterm = librarypage_obj.library_name
librarypage_obj.header.click_home_logo()
homepage_obj.header.click_search()
searchpage_obj.search_until_package_exists(searchterm, searchpage_obj.library(searchterm))
Assert.true(searchpage_obj.library(searchterm).is_displayed, '%s not found before timeout' % searchterm)
searchpage_obj.delete_test_data()
示例3: testShouldCheckLibraryLabel
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def testShouldCheckLibraryLabel(self, mozwebqa):
#This test is to check the labels of a library on the dashboard
#Create page objects
homepage_obj = HomePage(mozwebqa)
loginpage_obj = LoginPage(mozwebqa)
dashboardpage_obj = DashboardPage(mozwebqa)
libpage_obj = LibraryEditorPage(mozwebqa)
loginpage_obj.login()
#Create a library. Then go to dashboard and assert that the label is present.
homepage_obj.go_to_home_page()
homepage_obj.click_create_lib_btn()
library_name = libpage_obj.library_name
libpage_obj.header.click_dashboard()
Assert.true(dashboardpage_obj.is_the_current_page)
Assert.true(dashboardpage_obj.library(library_name).is_displayed, "Library %s not found" % library_name)
#Click on the edit button of the library.Then create a copy of that library and assert that the label is 'copy'
dashboardpage_obj.library(library_name).click_edit()
libpage_obj.click_copy()
copy_library_name = libpage_obj.library_name
try:
Assert.not_equal(library_name, copy_library_name)
except:
print 'A copy of the library could not be created'
libpage_obj.header.click_dashboard()
Assert.true(dashboardpage_obj.library(copy_library_name).is_displayed, "Library %s not found" % copy_library_name)
dashboardpage_obj.delete_test_data()
示例4: test_create_library
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def test_create_library(self, mozwebqa):
#This test is to check the labels of a library on the dashboard
#Create page objects
homepage_obj = HomePage(mozwebqa)
homepage_obj.go_to_home_page()
loginpage_obj = homepage_obj.header.click_signin()
dashboard_obj = loginpage_obj.login()
#Create a library. Then go to dashboard and assert that the label is present.
homepage_obj = dashboard_obj.go_to_home_page()
libpage_obj = homepage_obj.click_create_lib_btn()
library_name = libpage_obj.package_name
dashboard_obj = libpage_obj.header.click_dashboard()
Assert.true(dashboard_obj.is_the_current_page)
Assert.true(dashboard_obj.library(library_name).is_displayed, "Library %s not found" % library_name)
#Click on the edit button of the library.Then create a copy of that library and assert that the label is 'copy'
libpage_obj = dashboard_obj.library(library_name).click_edit()
libpage_obj.click_copy()
copy_library_name = libpage_obj.package_name
Assert.contains(library_name, copy_library_name)
Assert.contains('copy', copy_library_name)
dashboard_obj = libpage_obj.header.click_dashboard()
Assert.true(dashboard_obj.library(copy_library_name).is_displayed, "Library %s not found" % copy_library_name)
dashboard_obj.delete_test_data()
示例5: testShouldCheckLibDelete
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def testShouldCheckLibDelete(self, mozwebqa):
homepage_obj = HomePage(mozwebqa)
loginpage_obj = LoginPage(mozwebqa)
dashboardpage_obj = DashboardPage(mozwebqa)
libpage_obj = LibraryEditorPage(mozwebqa)
homepage_obj.go_to_home_page()
loginpage_obj.login()
homepage_obj.go_to_home_page()
homepage_obj.click_create_lib_btn()
library_name = libpage_obj.library_name
homepage_obj.header.click_dashboard()
dashboardpage_obj.library(library_name).click_delete()
dashboardpage_obj.library(library_name).confirm_delete()
Assert.false(dashboardpage_obj.library(library_name).is_displayed, "Library %s found" % library_name)
示例6: test_library_delete
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def test_library_delete(self, mozwebqa):
homepage_obj = HomePage(mozwebqa)
homepage_obj.go_to_home_page()
loginpage_obj = homepage_obj.header.click_signin()
dashboard_obj = loginpage_obj.login()
homepage_obj = dashboard_obj.go_to_home_page()
libpage_obj = homepage_obj.click_create_lib_btn()
library_name = libpage_obj.library_name
dashboard_obj = homepage_obj.header.click_dashboard()
dashboard_obj.library(library_name).click_delete()
dashboard_obj.library(library_name).confirm_delete()
Assert.false(dashboard_obj.library(library_name).is_displayed, "Library %s found" % library_name)
示例7: test_rename_library
# 需要导入模块: from pages.home_page import HomePage [as 别名]
# 或者: from pages.home_page.HomePage import click_create_lib_btn [as 别名]
def test_rename_library(self, mozwebqa):
homepage_obj = HomePage(mozwebqa)
homepage_obj.go_to_home_page()
loginpage_obj = homepage_obj.header.click_signin()
dashboard_obj = loginpage_obj.login()
new_library_name = 'renamed library ' + str(randint(1, 1000))
#Create a new library
homepage_obj = dashboard_obj.go_to_home_page()
libpage_obj = homepage_obj.click_create_lib_btn()
#Click properties and change its name
libpage_obj.click_properties()
libpage_obj.type_package_name(new_library_name)
libpage_obj.click_properties_save()
Assert.equal(libpage_obj.package_name, new_library_name)
libpage_obj.delete_test_data()