aboutsummaryrefslogtreecommitdiffstats
path: root/servo/tests/test_functional.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-16 16:43:37 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-16 16:43:37 +0300
commit7cc9f71a5989b8b263ff855167841806233565fa (patch)
tree92af5664abccb1c69303cabbeeddd409bf7fda7b /servo/tests/test_functional.py
parent2e22e81e000fabd838015bb93757df777f6fbf23 (diff)
downloadServo-7cc9f71a5989b8b263ff855167841806233565fa.tar.gz
Servo-7cc9f71a5989b8b263ff855167841806233565fa.tar.bz2
Servo-7cc9f71a5989b8b263ff855167841806233565fa.zip
Cleanup
Diffstat (limited to 'servo/tests/test_functional.py')
-rw-r--r--servo/tests/test_functional.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/servo/tests/test_functional.py b/servo/tests/test_functional.py
index d6df68e..0fa5b49 100644
--- a/servo/tests/test_functional.py
+++ b/servo/tests/test_functional.py
@@ -36,19 +36,19 @@ class NewVisitorTest(unittest.TestCase):
def fill_contact_fields(self):
field = self.browser.find_element_by_id('id_fname')
- field.send_keys('Filipp')
+ field.send_keys('Firstname')
field = self.browser.find_element_by_id('id_lname')
- field.send_keys('Lepalaan')
+ field.send_keys('Lastname')
field = self.browser.find_element_by_id('id_email')
- field.send_keys('filipp@mac.com')
+ field.send_keys('user@example.com')
field = self.browser.find_element_by_id('id_phone')
- field.send_keys('358451202717')
+ field.send_keys('123456789')
field = self.browser.find_element_by_id('id_city')
- field.send_keys('Helsinki')
+ field.send_keys('City')
field = self.browser.find_element_by_id('id_postal_code')
- field.send_keys('00500')
+ field.send_keys('00100')
field = self.browser.find_element_by_id('id_address')
- field.send_keys('Kustaankatu 2 C 96')
+ field.send_keys('Somestreet 1')
field = self.browser.find_element_by_id('id_agree_to_terms')
field.click()