本文整理汇总了Python中pages.dashboard.DashboardPage类的典型用法代码示例。如果您正苦于以下问题:Python DashboardPage类的具体用法?Python DashboardPage怎么用?Python DashboardPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了DashboardPage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_dashboard
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
示例2: test_feedback_custom_date_filter_with_bad_dates
def test_feedback_custom_date_filter_with_bad_dates(self, mozwebqa):
"""Verify random non-dates are ignored"""
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
start_date = random.randint(10000000, 50000000)
end_date = random.randint(50000001, 99999999)
def build_random_date(start, end):
dte = random.randint(start, end)
dte = str(dte)
return '-'.join([dte[0:4], dte[4:6], dte[6:8]])
data = [
(build_random_date(10000000, 15000000), build_random_date(90000001, 99999999)),
('0000-00-00', '0000-00-00'),
]
for start_date, end_date in data:
dashboard_pg.date_filter.filter_by_custom_dates_using_keyboard(start_date, end_date)
Assert.equal(dashboard_pg.date_start_from_url, str(start_date))
Assert.equal(dashboard_pg.date_end_from_url, str(end_date))
Assert.equal(len(dashboard_pg.messages), 20)
dashboard_pg.date_filter.enable_custom_dates()
Assert.equal(dashboard_pg.date_filter.custom_start_date, self.default_start_date)
Assert.equal(dashboard_pg.date_filter.custom_end_date, self.default_end_date)
示例3: test_submit_happy_feedback_with_unicode
def test_submit_happy_feedback_with_unicode(self, mozwebqa):
"""Fill out happy feedback with unicode description"""
timestamp = unicode(time.time())
desc = u"input-tests testing happy feedback with unicode \u2603"
desc = desc + u" " + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page("firefox")
# 2. click on happy
feedback_pg.click_happy_feedback()
# 3. fill out description and url
feedback_pg.set_description(desc)
# 4. submit
thanks_pg = feedback_pg.submit(expect_success=True)
assert thanks_pg.is_the_current_page
# 5. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
assert resp.type.strip() == "Happy"
assert resp.body.strip() == desc.strip()
示例4: test_submit_sad_feedback
def test_submit_sad_feedback(self, mozwebqa):
timestamp = str(time.time())
desc = "input-tests testing sad feedback " + timestamp
url = "http://sad.example.com/" + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page("firefox")
# 2. click on sad
feedback_pg.click_sad_feedback()
# 3. fill out description, url, email checkbox and email
# address
feedback_pg.set_description(desc)
feedback_pg.set_url(url)
feedback_pg.check_email_checkbox()
feedback_pg.set_email("[email protected]")
# 4. submit
thanks_pg = feedback_pg.submit(expect_success=True)
assert thanks_pg.is_the_current_page
# 5. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
assert resp.type.strip() == "Sad"
assert resp.body.strip() == desc.strip()
assert resp.locale.strip() == "English (US)"
assert resp.site.strip() == "example.com"
示例5: test_submit_sad_feedback_using_prefill
def test_submit_sad_feedback_using_prefill(self, mozwebqa):
timestamp = str(time.time())
desc = 'input-tests testing sad feedback ' + timestamp
# 1. go to the feedback form with sad prefill
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page(
'firefox', querystring='happy=0&url=http%3A%2F%2Fwww.mozilla.org')
# 2. fill out description
feedback_pg.set_description(desc)
# 3. submit
thanks_pg = feedback_pg.submit(expect_success=True)
assert thanks_pg.is_the_current_page
# 4. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
assert resp.type.strip() == 'Sad'
assert resp.url.strip() == 'http://www.mozilla.org'
assert resp.body.strip() == desc.strip()
assert resp.locale.strip() == 'English (US)'
示例6: test_submit_happy_feedback_with_unicode
def test_submit_happy_feedback_with_unicode(self, mozwebqa):
"""Fill out happy feedback with unicode description"""
timestamp = unicode(time.time())
desc = u'input-tests testing happy feedback with unicode \u2603'
desc = desc + u' ' + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on happy
feedback_pg.click_happy_feedback()
# 3. fill out description and url
feedback_pg.set_description(desc)
feedback_pg.click_moreinfo_next()
# 4. submit
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# 5. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.type.strip(), 'Happy')
Assert.equal(resp.body.strip(), desc.strip())
示例7: test_submit_happy_feedback
def test_submit_happy_feedback(self, mozwebqa):
timestamp = str(time.time())
desc = 'input-tests testing happy feedback ' + timestamp
url = 'http://happy.example.com/' + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormDevPage(mozwebqa)
feedback_pg.go_to_feedback_page('firefox')
# 2. click on happy
feedback_pg.click_happy_feedback()
# 3. fill out description, url, email checkbox and email
# address
feedback_pg.set_description(desc)
feedback_pg.set_url(url)
feedback_pg.check_email_checkbox()
feedback_pg.set_email('[email protected]')
# 4. submit
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# 5. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.type.strip(), 'Happy')
Assert.equal(resp.body.strip(), desc.strip())
Assert.equal(resp.locale.strip(), 'English (US)')
Assert.equal(resp.site.strip(), 'example.com')
示例8: test_preset_date_filters
def test_preset_date_filters(self, mozwebqa):
"""Verify the preset date filters of 1, 7, and 30 days"""
dashboard_pg = DashboardPage(mozwebqa)
# Defaults to 7d.
dashboard_pg.go_to_dashboard_page()
Assert.equal(dashboard_pg.date_filter.current_days, '7d')
# Last day filter
dashboard_pg.date_filter.click_last_day()
Assert.equal(dashboard_pg.date_filter.current_days, '1d')
start_date = date.today() - timedelta(days=1)
Assert.equal(dashboard_pg.date_start_from_url, start_date.strftime('%Y-%m-%d'))
# TODO: Check results are within the expected date range,
# possibly by navigating to the last page and checking the
# final result is within range. Currently blocked by bug
# 615844.
# Last seven days filter
dashboard_pg.date_filter.click_last_seven_days()
Assert.equal(dashboard_pg.date_filter.current_days, '7d')
start_date = date.today() - timedelta(days=7)
Assert.equal(dashboard_pg.date_start_from_url, start_date.strftime('%Y-%m-%d'))
# TODO: Check results are within the expected date range,
# possibly by navigating to the last page and checking the
# final result is within range. Currently blocked by bug
# 615844.
# Last thirty days filter
dashboard_pg.date_filter.click_last_thirty_days()
Assert.equal(dashboard_pg.date_filter.current_days, '30d')
start_date = date.today() - timedelta(days=30)
Assert.equal(dashboard_pg.date_start_from_url, start_date.strftime('%Y-%m-%d'))
示例9: test_submit_sad_feedback
def test_submit_sad_feedback(self, mozwebqa):
timestamp = str(time.time())
desc = 'input-tests testing sad feedback ' + timestamp
url = 'http://sad.example.com/' + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on sad
feedback_pg.click_sad_feedback()
# 3. fill out description and url
feedback_pg.set_description(desc)
feedback_pg.set_url(url)
feedback_pg.click_moreinfo_next()
# 4. fill in email address
feedback_pg.check_email_checkbox()
feedback_pg.set_email('[email protected]')
# 5. submit
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# 6. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.type.strip(), 'Sad')
Assert.equal(resp.body.strip(), desc.strip())
Assert.equal(resp.locale.strip(), 'English (US)')
Assert.equal(resp.site.strip(), 'example.com')
示例10: test_submit_sad_feedback
def test_submit_sad_feedback(self, mozwebqa):
timestamp = str(time.time())
desc = 'input-tests testing sad fxos feedback ' + timestamp
# 1. go to the feedback form
feedback_pg = FxOSFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on happy
feedback_pg.click_sad_feedback()
# 3. pick default country
feedback_pg.click_country_next()
# 4. pick default device
feedback_pg.click_device_next()
# 5. fill in description
feedback_pg.set_description(desc)
# 6. submit
feedback_pg.submit(expect_success=True)
self.take_a_breather()
assert feedback_pg.current_card == 'thanks'
# 7. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
assert resp.type.strip() == 'Sad'
assert resp.body.strip() == desc.strip()
assert resp.locale.strip() == 'English (US)'
示例11: test_feedback_custom_date_filter
def test_feedback_custom_date_filter(self, mozwebqa):
"""
1. Verifies the calendar is displayed when filtering on custom dates
2. Verifies date-start=<date> and end-date=<date> in the url
"""
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
start_date = date.today() - timedelta(days=3)
end_date = date.today() - timedelta(days=1)
dashboard_pg.date_filter.filter_by_custom_dates_using_datepicker(start_date, end_date)
Assert.equal(dashboard_pg.date_start_from_url, start_date.strftime('%Y-%m-%d'))
Assert.equal(dashboard_pg.date_end_from_url, end_date.strftime('%Y-%m-%d'))
# TODO: Check results are within the expected date range,
# possibly by navigating to the first/last pages and checking
# the final result is within range. Currently blocked by bug
# 615844.
day_filters = ((1, "1d"), (7, "7d"), (30, "30d"))
for days in day_filters:
start_date = date.today() - timedelta(days=days[0])
dashboard_pg.date_filter.filter_by_custom_dates_using_datepicker(start_date, date.today())
Assert.false(dashboard_pg.date_filter.is_custom_date_filter_visible)
Assert.equal(dashboard_pg.date_start_from_url, start_date.strftime('%Y-%m-%d'))
Assert.equal(dashboard_pg.date_end_from_url, self.default_end_date)
示例12: test_dashboard_overflow
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
示例13: test_that_we_can_search_feedback_with_unicode
def test_that_we_can_search_feedback_with_unicode(self, mozwebqa):
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(u"p\xe1gina")
# There's no way to guarantee that the search we did finds
# responses on the page. So we check for one of two possible
# scenarios: existences of responses or a message count of 0.
assert dashboard_pg.no_messages or (len(dashboard_pg.messages) > 0)
示例14: test_dashboard_load_page_two
def test_dashboard_load_page_two(base_url, selenium):
page = DashboardPage(selenium, base_url).open()
# 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
示例15: test_dashboard_open_details
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()