selenium+eclipse+python环境
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+eclipse+python环境相关的知识,希望对你有一定的参考价值。
1.下载并安装jdk,配置环境变量;
2.下载并安装python;
3.安装selenium,在安装好的python路径D:\Program Files\python34\Scripts下执行pip install -U selenium
4.下载eclipse,在eclipse中在线安装pyDev:Help—Install New Software..—Add,输入http://pydev.org/updates
5.pydev安装后,eclipse中配置python解释器:Window > Preferences > Pydev > Interpreter - Python。单击New,选择已安装的python.exe
6.Eclipse中,选择 File > New > Project > Pydev > Pydev Project;
7.工程创建后,创建py文件:
#-*- conding=utf-8 -*-
from selenium import webdriver
if __name__ == "__main__":
driver = webdriver.Firefox()
driver.implicitly_wait(30)
driver.get("http://www.baidu.com")
driver.find_element_by_id("kw").send_keys("Selenium")
driver.find_element_by_id("su").submit()
driver.quit()
运行。
以上是关于selenium+eclipse+python环境的主要内容,如果未能解决你的问题,请参考以下文章
Python3.7Eclipse 4.5 Java 8 PyDev 5.2.0 selenium-3.14.0环境搭建
Python+selenium+eclipse+pydev自动化测试环境搭建