selenium+python第一个自动化脚本
Posted 朋云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+python第一个自动化脚本相关的知识,希望对你有一定的参考价值。
# coding=utf-8
import time
from selenium import webdriver
browser = webdriver.Firefox()#启动火狐浏览器
browser.get("http://www.baidu.com")#打开百度首页
time.sleep(2)#停顿2s
browser.find_element_by_id("kw").send_keys("selenium") #向搜索框输入selenium
browser.find_element_by_id("su").click()#点击百度一下进行搜索
time.sleep(4) #停顿4s
browser.quit()#关闭浏览器
以上是关于selenium+python第一个自动化脚本的主要内容,如果未能解决你的问题,请参考以下文章
Selenium_python自动化第一个测试案例(代码基本规范)
Python+Selenium基础篇之5-第一个完整的自动化测试脚本
基于Python的Web自动化(Selenium)之第一个查询脚本