def test_can_enter_donation_form_and_execute_donation(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("4111111111111111")
# Submit
submit = self.browser.find_element_by_name("subbtn")
submit.send_keys(Keys.ENTER)
self.wait_for(lambda: self.assertIn('Muito obrigado pela sua doação!', self.browser.page_source))
评论列表
文章目录