当前位置: 首页>>代码示例>>Python>>正文


Python DashboardPage.open_first_details方法代码示例

本文整理汇总了Python中pages.dashboard.DashboardPage.open_first_details方法的典型用法代码示例。如果您正苦于以下问题:Python DashboardPage.open_first_details方法的具体用法?Python DashboardPage.open_first_details怎么用?Python DashboardPage.open_first_details使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pages.dashboard.DashboardPage的用法示例。


在下文中一共展示了DashboardPage.open_first_details方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_dashboard

# 需要导入模块: from pages.dashboard import DashboardPage [as 别名]
# 或者: from pages.dashboard.DashboardPage import open_first_details [as 别名]
def test_dashboard(base_url, selenium):
    page = DashboardPage(selenium, base_url).open()
    first_row = page.first_row
    # ip toggle not present
    assert not page.is_ip_toggle_present
    # ip ban not present
    assert not first_row.is_ip_ban_present
    # spam ham button not present
    assert not first_row.is_spam_ham_button_present
    # no dashboard-details
    assert page.details_items_length is 0
    # click first cell
    page.open_first_details()
    # dashboard-details exist and are visible
    assert page.details_items_length is 1
    assert page.is_first_details_displayed
    # contains a diff
    assert page.is_first_details_diff_displayed
    # does not overflow page
    assert page.dashboard_not_overflowing
    # save id of first revision on page one
    first_row_id = page.first_row_id
    # click on page two link
    page.click_page_two()
    # save id of first revision on page tw0
    new_first_row_id = page.first_row_id
    # check first revison on page one is not on page two
    assert first_row_id is not new_first_row_id
开发者ID:stephaniehobson,项目名称:kuma,代码行数:30,代码来源:test_dashboard.py

示例2: test_dashboard_overflow

# 需要导入模块: from pages.dashboard import DashboardPage [as 别名]
# 或者: from pages.dashboard.DashboardPage import open_first_details [as 别名]
def test_dashboard_overflow(base_url, selenium):
    """
    The revision detail diff stays in page boundaries

    bug 1405690 - some content causes overflows
    """
    page = DashboardPage(selenium, base_url).open()
    page.open_first_details()
    assert page.scroll_width <= page.client_width
开发者ID:MatonAnthony,项目名称:kuma,代码行数:11,代码来源:test_dashboard.py

示例3: test_dashboard_open_details

# 需要导入模块: from pages.dashboard import DashboardPage [as 别名]
# 或者: from pages.dashboard.DashboardPage import open_first_details [as 别名]
def test_dashboard_open_details(base_url, selenium):
    page = DashboardPage(selenium, base_url).open()
    # no dashboard-details
    assert page.details_items_length is 0
    # click first cell
    page.open_first_details()
    # dashboard-details exist and are visible
    assert page.details_items_length is 1
    assert page.is_first_details_displayed
    # contains a diff
    page.wait_for_first_details_diff_displayed()
开发者ID:MatonAnthony,项目名称:kuma,代码行数:13,代码来源:test_dashboard.py

示例4: test_dashboard_open_details

# 需要导入模块: from pages.dashboard import DashboardPage [as 别名]
# 或者: from pages.dashboard.DashboardPage import open_first_details [as 别名]
def test_dashboard_open_details(base_url, selenium):
    admin = AdminLogin(selenium, base_url).open()
    admin.login_new_user()
    page = DashboardPage(selenium, base_url).open()
    # no dashboard-details
    assert page.details_items_length == 0
    # click first cell
    page.open_first_details()
    # dashboard-details exist and are visible
    assert page.details_items_length == 1
    assert page.is_first_details_displayed
    # contains a diff
    page.wait_for_first_details_diff_displayed()
开发者ID:Elchi3,项目名称:kuma,代码行数:15,代码来源:test_dashboard.py


注:本文中的pages.dashboard.DashboardPage.open_first_details方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。