美文网首页
Python模拟打开百度网页并搜索

Python模拟打开百度网页并搜索

作者: 扶我起来改bug | 来源:发表于2019-04-07 17:17 被阅读0次

    python模拟打开百度并搜索

    1. 下载chrome驱动并解压,将解压后的exe放置和python.exe同一个目录下
    2. python脚本openChrome.py内容如下
    #!/usr/bin/env python
    from selenium import webdriver
    import time
    driver = webdriver.Chrome()
    driver.get("http://www.baidu.com")
    input = driver.find_element_by_id("kw")
    # 输入搜索值
    input.send_keys("python教程")
    searchButton = driver.find_element_by_id("su")
    # 模拟点击
    searchButton.click()
    time.sleep(10)
    # 关闭浏览器
    driver.close()
    
    1. python执行该脚本

    $ python openChrome.py

    相关文章

      网友评论

          本文标题:Python模拟打开百度网页并搜索

          本文链接:https://www.haomeiwen.com/subject/jiisiqtx.html