-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20_forgot_password.py
35 lines (28 loc) · 955 Bytes
/
20_forgot_password.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
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Firefox()
try:
wait = WebDriverWait(driver, 10)
driver.get('https://the-internet.herokuapp.com/')
link = wait.until(EC.presence_of_element_located(
(By.LINK_TEXT, "Forgot Password")
))
link.click()
forgot = wait.until(EC.presence_of_element_located(
(By.ID, "email")
))
forgot.click()
forgot.send_keys('hanuman@gmail.com')
driver.find_element(By.ID, 'form_submit').click()
driver.wait.until(EC.presence_of_element_located(
(By.TAG_NAME, "h1")
))
message = driver.find_element(By.TAG_NAME, 'h1')
if (message.text == 'Internal Server Error'):
print('Test FAIL.')
else:
print('Test PASS.')
finally:
driver.quit()