本文整理匯總了Python中pages.generic_feedback_form.GenericFeedbackFormPage.set_description_execute_script方法的典型用法代碼示例。如果您正苦於以下問題:Python GenericFeedbackFormPage.set_description_execute_script方法的具體用法?Python GenericFeedbackFormPage.set_description_execute_script怎麽用?Python GenericFeedbackFormPage.set_description_execute_script使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pages.generic_feedback_form.GenericFeedbackFormPage
的用法示例。
在下文中一共展示了GenericFeedbackFormPage.set_description_execute_script方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_remaining_character_count
# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_description_execute_script [as 別名]
def test_remaining_character_count(self, mozwebqa):
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page('firefox')
feedback_pg.click_happy_feedback()
assert feedback_pg.remaining_character_count == 10000
feedback_pg.set_description('aaaaa')
assert feedback_pg.remaining_character_count == 9995
feedback_pg.update_description('a' * 100)
assert feedback_pg.remaining_character_count == 9895
# Doing setvalue clears the text, so we do that for 9998 of
# them and then add one more for 9999.
feedback_pg.set_description_execute_script('a' * 9998)
# Update to kick off "input" event.
feedback_pg.update_description('a')
assert feedback_pg.remaining_character_count == 1
feedback_pg.update_description('a')
assert feedback_pg.remaining_character_count == 0
feedback_pg.update_description('a')
assert feedback_pg.remaining_character_count == -1
示例2: test_remaining_character_count
# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_description_execute_script [as 別名]
def test_remaining_character_count(self, mozwebqa):
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
feedback_pg.click_happy_feedback()
Assert.equal(feedback_pg.remaining_character_count, 10000)
feedback_pg.set_description('aaaaa')
Assert.equal(feedback_pg.remaining_character_count, 9995)
feedback_pg.update_description('a' * 100)
Assert.equal(feedback_pg.remaining_character_count, 9895)
# Doing setvalue clears the text, so we do that for 9998 of
# them and then add one more for 9999.
feedback_pg.set_description_execute_script('a' * 9998)
# Update to kick off "input" event.
feedback_pg.update_description('a')
Assert.equal(feedback_pg.remaining_character_count, 1)
feedback_pg.update_description('a')
Assert.equal(feedback_pg.remaining_character_count, 0)
feedback_pg.update_description('a')
Assert.equal(feedback_pg.remaining_character_count, -1)