python selenium第一个WebDriver脚本

Posted 夏晓旭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python selenium第一个WebDriver脚本相关的知识,希望对你有一定的参考价值。

#coding=utf-8
from selenium import webdriver
import time
import os
os.environ["webdriver.firefox.driver"]="C:\\Program Files\\Mozilla Firefox\\firefox.exe"

driver=webdriver.Firefox(executable_path=\'c:\\\\geckodriver\')
driver.get("http://www.sogou.com")
driver.find_element_by_id(\'query\').clear()
driver.find_element_by_id(\'query\').send_keys("automation tester")
driver.find_element_by_id(\'stb\').click()
time.sleep(3)
driver.quit()

可以看到firefox浏览器自动启动,访问搜狗网站,自动搜索automation tester关键字等动作。。。

然后自动退出了

比较神奇啊。。。。

 

 

以上是关于python selenium第一个WebDriver脚本的主要内容,如果未能解决你的问题,请参考以下文章

Python - Selenium - 如何使用浏览器快捷方式

python — selenium爬取微博指数

Python+selenium自动化测试之浏览器基础操作

如何使用Selenium和Python在网站内的页面中导航?

selenium自动化实战-基于python语言(二: 编写脚本)

《selenium2 python 自动化测试实战》(14)——下载文件