-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTC012_UpdateVenue.py
60 lines (42 loc) · 1.71 KB
/
TC012_UpdateVenue.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import unittest
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
class TC012_Update_Venue(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome()
def test_create_group(self):
user = "huskyUser"
pwd = "husker@123"
driver = self.driver
driver.maximize_window()
driver.get("https://huskersapp.herokuapp.com")
time.sleep(1)
#Click Sign in button
driver.find_element_by_xpath("/html/body/div/div/header/div/div/div[2]/ul/li[3]/a").click()
time.sleep(1)
# Fetch the user ID and password by giving the below codes
elem = driver.find_element_by_id("id_username")
elem.send_keys(user)
elem = driver.find_element_by_id("id_password")
elem.send_keys(pwd)
elem.send_keys(Keys.RETURN)
time.sleep(1)
#Click on the Update venue tab
driver.find_element_by_xpath("/html/body/header/div[2]/div/div/ul/li[3]/a").click()
#Click on the Update venue button
driver.find_element_by_xpath("/html/body/div/div/div[1]/div[2]/div[2]/a/button").click()
time.sleep(1)
#Click on edit button on any of the venues
driver.find_element_by_xpath("/html/body/div/div/div[3]/table/tbody/tr[11]/td[4]/a").click()
elem = driver.find_element_by_id("id_address_line_1")
elem.clear()
time.sleep(1)
elem.send_keys("J Street")
#Click on Update button at the bottom
driver.find_element_by_xpath("/html/body/div/div/form/div[7]/div/button").click()
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()