-
Notifications
You must be signed in to change notification settings - Fork 0
/
TC005_Logout.py
52 lines (36 loc) · 1.32 KB
/
TC005_Logout.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
#Author : Deepika
#Final Test Demo
import unittest
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
class TC005_Logout(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome()
def test_logout_feature(self):
user = "huskyUser"
pwd = "husker@123"
driver = self.driver
driver.maximize_window()
driver.get("https://huskersapp.herokuapp.com")
time.sleep(1)
#Click on the Sign In button at the top right corner
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)
#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 Logout
driver.find_element_by_xpath("/html/body/header/div[1]/div/div[2]/ul/li[2]/div/a[3]/span").click()
time.sleep(2)
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()