摘要: from selenium import webdriver a = webdriver.Firefox(executable_path="/usr/local/bin/geckodriver") # 路径根据自己的修改 a.get('http://www.baidu.com') print(a.title) a.quit() 阅读全文
posted @ 2017-11-30 16:48 Nathaniel-J 阅读(2222) 评论(0) 推荐(0) 编辑