本文整理汇总了Python中pages.desktop.page_provider.PageProvider.type_question方法的典型用法代码示例。如果您正苦于以下问题:Python PageProvider.type_question方法的具体用法?Python PageProvider.type_question怎么用?Python PageProvider.type_question使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pages.desktop.page_provider.PageProvider
的用法示例。
在下文中一共展示了PageProvider.type_question方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_that_posting_question_works
# 需要导入模块: from pages.desktop.page_provider import PageProvider [as 别名]
# 或者: from pages.desktop.page_provider.PageProvider import type_question [as 别名]
def test_that_posting_question_works(self, mozwebqa):
"""Posts a question to /questions"""
timestamp = datetime.datetime.today()
q_to_ask = "automation test question %s" % (timestamp)
q_details = "This is a test. %s" % (timestamp)
# go to the /questions/new page and log in
ask_new_questions_page = PageProvider(mozwebqa).new_question_page()
# post a question
ask_new_questions_page.click_firefox_product_link()
ask_new_questions_page.click_category_problem_link()
ask_new_questions_page.type_question(q_to_ask)
ask_new_questions_page.click_none_of_these_solve_my_problem_button()
view_question_pg = ask_new_questions_page.fill_up_questions_form(q_to_ask, q_details)
Assert.equal(view_question_pg.question, q_to_ask)
Assert.equal(view_question_pg.question_detail, q_details)