def test_sms_player_without_entering_data(self):
     """
     Function to test the error message on the sms submission page for blank field
     """
     self.driver.go_to(DATA_WINNER_SMS_TESTER_PAGE)
     sms_tester_page = SMSTesterPage(self.driver)
     sms_tester_page.send_sms_with(BLANK_FIELDS)
     self.assertEqual(sms_tester_page.get_error_message(), fetch_(ERROR_MSG, from_(BLANK_FIELDS)))
Beispiel #2
0
 def test_sms_player_without_entering_data(self):
     """
     Function to test the error message on the sms submission page for blank field
     """
     self.driver.go_to(DATA_WINNER_SMS_TESTER_PAGE)
     sms_tester_page = SMSTesterPage(self.driver)
     sms_tester_page.send_sms_with(BLANK_FIELDS)
     self.assertEqual(sms_tester_page.get_error_message(),
                      fetch_(ERROR_MSG, from_(BLANK_FIELDS)))
Beispiel #3
0
 def test_sms_player_without_entering_data(self):
     self.driver.go_to(DATA_WINNER_SMS_TESTER_PAGE)
     sms_tester_page = SMSTesterPage(self.driver)
     sms_tester_page.send_sms_with(BLANK_FIELDS)
     self.assertEqual(sms_tester_page.get_error_message(),
                      fetch_(ERROR_MSG, from_(BLANK_FIELDS)))