def test_donor_fills_wrong_credit_card_and_gets_error(self):
# Donor has heard about the opportunity to donate to the organization and enters the website
self.browser.get(self.live_server_url)
self.fill_in_donation_fields_right()
self.fill_in_personal_fields_right()
self.fill_in_cc_fields("4111111111111112")
# Submit
submit = self.browser.find_element_by_name("subbtn")
submit.send_keys(Keys.ENTER)
self.wait_for(lambda: self.assertIn('Erro nas informações de cartão de crédito enviadas.', self.browser.page_source))
评论列表
文章目录