-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbelajarSelenium3.py
32 lines (27 loc) · 1.26 KB
/
belajarSelenium3.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
from lib2to3.pgen2 import driver
from webbrowser import get
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get("https://demoqa.com/alerts")
time.sleep(2)
# ===================================================================================================
# CASE 1 =============================================================================================
# driver.find_element_by_id("alertButton").click()
# time.sleep(5)
# # handle alert with accept
# driver.switch_to.alert.accept()
# ===================================================================================================
# CASE 2 =============================================================================================
# driver.find_element_by_id("confirmButton").click()
# time.sleep(5)
# # handle alert with cancel
# driver.switch_to.alert.dismiss()
# ===================================================================================================
# CASE 3 =============================================================================================
driver.find_element_by_id("promtButton").click()
# driver.find_element_by_css_selector("#promtButton").click()
time.sleep(2)
driver.switch_to.alert.send_keys("saya sedang test")
time.sleep(2)
driver.switch_to.alert.accept()