admin 管理员组

文章数量: 887021

import time
import webbrowser
import os

# 浏览器运行目录
chromePath = r"C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe"

# 注册浏览器
webbrowser.register('chrome', None, webbrowser.BackgroundBrowser(chromePath))

# 获取浏览器并打开指定地址
webbrowser.get('chrome').open('https://www.bilibili/v/life/daily/?spm_id_from=333.5.b_6c6966655f6461696c79.2#/', new=1, autoraise=True)

# 睡眠5秒
time.sleep(5)

# 关闭chrome浏览器
os.system('taskkill /F /IM chrome.exe')

注意目录中的r

本文标签: 浏览器 网页 python