mac 搭建python+chromedriver环境

1、下载chromedriver

chromedriver下载地址http://chromedriver.storage.googleapis.com/index.html
找到和自己安装的谷歌版本相对应的下载
mac 搭建python+chromedriver环境_第1张图片
mac 搭建python+chromedriver环境_第2张图片

2、安装chromedriver

解压上个步骤下载的安装包,出现一个chromedriver文件我的默认地址是在下载,位置,将得到的chromedriver复制到python安装的位置/usr/local/bin的打开终端输入

sudo cp -R ~/Downloads/chromedriver /usr/local/bin

关闭浏览器

3、验证是否安装

终端输入chromedriver即可
mac 搭建python+chromedriver环境_第3张图片

4、编写文件运行测试

新建一个test1.py文件,运行python3 test1.py,如果打开了百度并搜索关键词“新闻”,则说明安装成功


from selenium import webdriver
 
driver = webdriver.Chrome()
driver.implicitly_wait(10)#设置超时时间
driver.maximize_window()#窗口最大化显示
 
driver.get("http://www.baidu.com/")
search_field = driver.find_element_by_id("kw")#找到输入框
search_field.clear()#清空当前输入内容
 
search_field.send_keys("新闻")#重新这是搜索关键字
search_field.submit()#提交进行搜索
 
products = driver.find_elements_by_xpath("//div[contains(@class, 'c-abstract')]")
 
print ("Found " + str(len(products)) + "products:")
 
#  获取搜索道德文章并打印出来
for product in products:
    print (product.text)
 
# driver.quit()

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