1. 安装Python
2. 安装selenium
3. 下载谷歌驱动ChromeDriver,放到Python的Scripts目录下
4. 编写代码,如下
# coding: utf-8 from selenium import webdriver # 浏览器驱动器 from selenium.webdriver.common.by import By # 定位器 from selenium.webdriver.common.keys import Keys # 键盘对象 from selenium.webdriver.support import expected_conditions as EC # 判断器 from selenium.webdriver.support.wait import WebDriverWait # 浏览器等待对像 import time # 创建一个谷歌浏览器对象 browser = webdriver.Chrome() try: # 浏览器对象打开百度地址 browser.get("https://www.baidu.com") # 查找id为 'kw'的标签,即输入框 inputs = browser.find_element_by_id("kw") # 在输入框中填入'Python' inputs.send_keys("Python") # '按下'回车键(第一种) inputs.send_keys(Keys.ENTER) # 点击'百度一下'(第二种) # browser.find_element_by_id("su").click() # 创建一个等待对像,超时时间为10秒,调用的时间间隔为0.5 wait = WebDriverWait(browser, 10, 0.5) # 每隔0.5秒检查一次,直到页面元素出现id为'content_left'的标签 wait.until(EC.presence_of_all_elements_located((By.ID, "content_left"))) except Exception as e: print e else: # 打印请求的url print browser.current_url # 打印所有cookies print browser.get_cookies() finally: # 等待10秒 time.sleep(10) # 关闭浏览器对象 browser.close()
结果: