-
Notifications
You must be signed in to change notification settings - Fork 0
/
TC006_ChangePassword.py
62 lines (46 loc) · 1.75 KB
/
TC006_ChangePassword.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
61
62
#Author : Deepika
#Final Test Demo
import unittest
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
class TC006_ChangePassword(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome()
def test_changePassword_feature(self):
user = "student"
pwd = "NewPassword@101"
newpwd = "ChangePassword@929"
driver = self.driver
driver.maximize_window()
driver.get("https://huskersapp.herokuapp.com")
time.sleep(1)
# Click on the Sign in button
driver.find_element_by_xpath("/html/body/div/div/div[1]/div/a[1]/button").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)
#Allow the user to logout
driver.find_element_by_xpath("/html/body/header/div[1]/div/div[2]/ul/li[2]/a/span/i").click()
time.sleep(1)
#Click on ChangePassword
driver.find_element_by_xpath("/html/body/header/div[1]/div/div[2]/ul/li[2]/div/a[1]/span").click()
time.sleep(2)
#Input Old Password
elem = driver.find_element_by_id("id_old_password")
elem.send_keys(pwd)
elem = driver.find_element_by_id("id_new_password1")
elem.send_keys(newpwd)
elem = driver.find_element_by_id("id_new_password2")
elem.send_keys(newpwd)
driver.find_element_by_xpath("/html/body/div/div/form/div[4]/div/button").click()
time.sleep(2)
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()