第一种:selenium导入浏览器驱动,用get方法打开浏览器,例如:
import time from selenium import webdriver def mac(): driver = webdriver.Firefox() driver.implicitly_wait(5) driver.get("http://huazhu.gag.com/mis/main.do")
第二种:通过导入python的标准库webbrowser打开浏览器,例如:
>>> import webbrowser >>> webbrowser.open("C:\Program Files\Internet Explorer\iexplore.exe") True >>> webbrowser.open("C:\Program Files\Internet Explorer\iexplore.exe") True
第三种:使用Splinter模块模块
Splinter的使用必修依靠Cython、lxml、selenium这三个软件。所以,安装前请提前安装
Cython、lxml、selenium。
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是python如何实现打开浏览器的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号