python--应用场景--selenium

一、搭建环境

1.按装selenium库:pip install selenium

2.根据当前chrome浏览器的版本下载支持的chromeDriver,下载链接

二、应用举例

Demo链接

#!/usr/bin/env python
#-*- coding:utf-8 -*-

import time
from selenium import webdriver

#根据指定的chromedriver,获取一个dirver对像
driver = webdriver.Chrome('D:\Downloads\chromedriver.exe')

#用chrome浏览器访问给定的网址
driver.get('http://www.google.com/xhtml');

#Let the user actually see something!
time.sleep(5) 

#定位到name="q"的标签对像(即输入框)
search_box = driver.find_element_by_name('q')

#给定位到的标签设置内容
search_box.send_keys('ChromeDriver')

#提交表单
search_box.submit()

#Let the user actually see something!
time.sleep(5) 

#关闭浏览器
driver.quit()

标签定位方法官方文档

WebDriver API官方文档

 

 

 

转载于:https://my.oschina.net/u/3323607/blog/2250349

你可能感兴趣的:(python,爬虫)