Home>Article>Backend Development> How to open the browser in python

How to open the browser in python

尚
Original
2019-06-29 15:46:47 13200browse

How to open the browser in python

第一种: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教程栏目进行学习!

The above is the detailed content of How to open the browser in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn