当前位置:网站首页>Alert pop-up processing in Web Automation
Alert pop-up processing in Web Automation
2022-06-28 06:07:00 【FamilyYan】
One 、 Pop up classification
(1)JS bounced
Click to confirm :alert.accept()
Click Cancel :alert.dismiss()
Get text content :text = alert.text
Assign a value to the pop-up box : alert.send_keys(“Emily”)
(2) Modal frame : Operate by element positioning ,( Trigger the modal box first , Then navigate to the element in the modal box 、 Operational elements )
Two 、 Code implementation



from selenium.webdriver.common.alert import Alert
from selenium import webdriver
import logging
import time
logging.basicConfig(level=logging.DEBUG)
# Start the browser driver server
driver = webdriver.Chrome()
# driver.get("https://www.w3school.com.cn/tiy/t.asp?f=eg_js_alert")
# driver.get("https://www.w3school.com.cn/tiy/t.asp?f=eg_js_confirm")
driver.get("https://www.w3school.com.cn/tiy/t.asp?f=eg_js_prompt")
driver.maximize_window()
time.sleep(2)
# Switch iframe
driver.switch_to.frame("iframeResult")
time.sleep(2)
driver.find_element_by_xpath('//button[text()=" Have a try "]').click()
time.sleep(2)
alert = Alert(driver) # I am a warning box !
# Get text content
text = alert.text
print(text)
alert.send_keys("Emily")
time.sleep(5)
# Click to confirm
alert.accept()
# Click Cancel
# alert.dismiss()
边栏推荐
- API learning of OpenGL (2007) gltexcoordpointer
- Academic search related papers
- 借助nz-pagination中的let-total解析ng-template
- Syn retransmission caused by IPVS
- Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
- [MySQL] all query tables contain 20million data -- how to optimize SQL
- Small ball playing
- YYGH-8-预约挂号
- Where is the era bonus for developers?
- pytorch dataloader的长度 epoch与iteration的区别
猜你喜欢
随机推荐
RL practice (0) - and the platform xinchou winter season [rule based policy]
高质量国产立体声编解码器CJC8988,Pin to Pin替代WM8988
Object对象转 List集合
Common basic functions of Oracle
YYGH-7-用户管理
Install and manage multiple versions of PHP under mac
API learning of OpenGL (2007) gltexcoordpointer
How to add live chat in your Shopify store?
Install redis on windows and permanently change the password, and integrate redis with the SSM framework
Parsing ng template with let total in NZ Pagination
MySQL(一)——安装
Where is the era bonus for developers?
sql及list去重操作
Yygh-7-user management
使用SSM框架,配置多个数据库连接
How the third-party libraries in cocoapod reference local header files
MR-WordCount
At first glance, I can see several methods used by motionlayout
Drop down box for implementation
Object object to list collection







![Taobao seo training video course [22 lectures]](/img/81/21e844542b35010760d061abe905e9.jpg)

