标签:文件中 选择 pychar pyc test 打开 网址 项目 code
打开pycharm,点击File--New Project,项目名称location随意取比如就叫untitled吧,以后我们会逐步完善,Interpreter就是python解释器,选择你安装的python路径。
在新的工程的untitled目录上右键新建python file,名字就叫test01吧(先不要纠结名字格式或者目录结构这些,后边东西会越来越多,逐步完善)
在新建的test01文件中,桥下下边的代码
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("http://automationpractice.com/index.php")
你会发现有一个谷歌浏览器,自己启动了,并且打开了我们的练习网址。
恭喜环境完全搞定,接下来开心的撸代码吧
标签:文件中 选择 pychar pyc test 打开 网址 项目 code
原文地址:https://www.cnblogs.com/yilinfengyi/p/14204361.html