Home > Backend Development > Python Tutorial > How to open the browser in python

How to open the browser in python

Release: 2019-07-08 09:17:45
Original
13299 people have browsed it

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")
Copy after login

第二种:通过导入python的标准库webbrowser打开浏览器,例如:

>>> import webbrowser
>>> webbrowser.open("C:\\Program Files\\Internet Explorer\\iexplore.exe")
True
>>> webbrowser.open("C:\\Program Files\\Internet Explorer\\iexplore.exe")
True
Copy after login

第三种:使用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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template