python實現指定網頁的開啟和關閉

2021-10-23 15:43:13 字數 1184 閱讀 1092

firefox瀏覽器在使用taskklill命令是需要強制關閉程序,需要帶上/f。

# -*- coding:utf-8 -*-

import os,time

import webbrowser

# 定義開啟web函式

defopen_web

(i,j,url)

: m=

0while mn=

0while nwebbrowser.

open

(url)

print

(m,n)

time.sleep(1)

n+=1else

: time.sleep(2)

os.system(

'taskkill /f /im firefox.exe'

)print

('已經關閉瀏覽器'

) m+=

1else

:print

(i*j)

# 呼叫函式

open_web(5,

2,'www.baudu.com'

)

如下是taskkill 命令的使用方法,注意f和im連用時,f在前,如: taskkill /f /im qq.exe

引數列表:

/s system 指定要連線的遠端系統。

/u    [domain\]user    指定應該在哪個使用者上下文執行這個命令。

/p [password] 為提供的使用者上下文指定密碼。如果忽略,提示

輸入。/fi filter 應用篩選器以選擇一組任務。

允許使用 "*"。例如,映像名稱 eq acme*

/pid processid 指定要終止的程序的 pid。

使用 tasklist 取得 pid。

/im imagename 指定要終止的程序的映像名稱。萬用字元 '*'可用來

指定所有任務或映像名稱。

/t 終止指定的程序和由它啟用的子程序。

/f 指定強制終止程序。

/? 顯示幫助訊息。

Python開啟指定瀏覽器的指定網頁

coding utf 8 from selenium import webdriver import time def browser browser 打 狐 谷歌 ie瀏覽器用法,如谷歌 driver browser chrome try if browser firefox driver web...

按鈕開啟指定網頁

private void button1 click object sender,eventargs e 第一種方式 system.diagnostics.process myprocess new system.diagnostics.process myprocess.startinfo.fil...

python 操作瀏覽器開啟指定網頁

usr bin env python encoding utf8 import webbrowser import time webbrowser.open wait a while,and then go to another page time.sleep 5 webbrowser.open w...