-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path22.py
50 lines (40 loc) · 1.34 KB
/
22.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
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
import time
desired_cap = {
'browser': 'Chrome',
'browser_version': '81.0 beta',
'os': 'Windows',
'build': 'UI Testing',
'os_version': '10',
'resolution': '1920x1080',
'name': 'Testing Button without Selecting the File'
}
driver = webdriver.Remote(
command_executor='http://ankushpathak1:Jq6bxrXhNCEsyTWgwEvq@hub.browserstack.com:80/wd/hub',
desired_capabilities=desired_cap)
driver.get('http://akashsuper2000.github.io/faculty-dashboard')
driver.get('http://akashsuper2000.github.io/faculty-dashboard')
driver.fullscreen_window()
time.sleep(2)
username = driver.find_element_by_name('id')
username.send_keys('sample')
password = driver.find_element_by_name('password')
password.send_keys('password')
time.sleep(2)
subbut = driver.find_element_by_xpath("//input[@type='submit']")
subbut.click()
time.sleep(3)
subbut = driver.find_elements_by_xpath('//span[@class="Navbut"]')
subbut[1].click()
time.sleep(3)
subb = driver.find_element_by_xpath('//input[@class="btn btn-primary"]')
subb.click()
time.sleep(3)
obj=driver.switch_to.alert
print("Alert Message: "+obj.text)
obj.accept()
time.sleep(2)
print('Test Case Finished')
driver.quit()