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

2021-09-24 23:23:25 字數 1028 閱讀 7354

#coding=utf-8

from selenium import webdriver

import time

def browser(browser):

'''打**狐、谷歌、ie瀏覽器用法,如谷歌:driver=browser('chrome')'''

try:

if browser=="firefox":

driver=webdriver.firefox()

return driver

elif browser=="chrome":

driver=webdriver.chrome()

return driver

else:

print("not found browser!you can enter 'firefox','chrome'")

except exception as msg:

print("open browser error:%s"%msg)

if __name__=="__main__":

driver_firefox=browser('firefox')

driver_firefox.get("")

# 獲取瀏覽器的名稱

print("open browser:%s"%driver_firefox.name)

# 獲取網頁名稱

print(driver_firefox.title)

# 用谷歌瀏覽器開啟天龜網頁

driver_chrome=browser("chrome")

driver_chrome.get("")

# 獲取瀏覽器的名稱

print("open browser: %s"%driver_chrome.name)

# 獲取網頁名稱

print(driver_chrome.title)

time.sleep(5)|#休眠5秒

driver_chrome.quit()#谷歌瀏覽器不關閉網頁會報錯

指定瀏覽器開啟網頁

如果在你的android系統上安裝了多種瀏覽器,能否指定某瀏覽器訪問指定頁面?答案當然是 肯定的。具體方法如下 intent intent new intent intent.setaction android.intent.action.view uri content uri browsers ...

指定瀏覽器開啟網頁

如果在你的android系統上安裝了多種瀏覽器,能否指定某瀏覽器訪問指定頁面?答案當然是 肯定的。具體方法如下 intent intent new intent intent.setaction android.intent.action.view uri content uri browsers ...

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...