• python+selenium八:Alert弹窗


    
    
    
    

    此弹窗是浏览器自带的弹窗,不是html中的元素

    from selenium import webdriver
    from selenium.webdriver.common.action_chains import ActionChains
    import time
    from selenium.webdriver.support.select import Select

    driver = webdriver.Firefox()
    url = "https://www.baidu.com"
    driver.get(url)
    time.sleep(3)

    mouse = driver.find_element("link text", "设置")
    ActionChains(driver).move_to_element(mouse).perform()
    time.sleep(0.5)
    driver.find_element("link text", "搜索设置").click()
    time.sleep(1)


    # 先定位到下拉框
    s = driver.find_element_by_id("nr")
    Select(s).select_by_visible_text("每页显示20条")
    s.click()
    time.sleep(1)

    # 点击保存按钮,此时会弹出确认提示框
    driver.find_element_by_class_name("prefpanelgo").click()
    time.sleep(0.5)

    # 获取弹窗
    a = driver.switch_to_alert()
    # 或者
    # a = driver.switch_to.alert
    print(a.text) # 打印弹窗的文字内容

    1、accept() 弹框的确定按钮
    a.accept() # 点确定按钮

    2、dismiss() 弹框的取消按钮
    a.dismiss() # 点取消按钮

    3、弹框若有输入框,需输入内容
    a.send_keys("xxxx")

  • 相关阅读:
    Laravel 框架
    tp5
    jq关于对象类型的判断
    简易的 js 留言板
    学习任务
    实验报告:指针与地址
    C语言数据类型
    嗯,关于 nanxI 的50条~(算是自我介绍吧)
    初学C语言
    dropload.js
  • 原文地址:https://www.cnblogs.com/zhongyehai/p/9174651.html
Copyright © 2020-2023  润新知