Python教程

python selenium库的使用(控制已打开的网页)

本文主要是介绍python selenium库的使用(控制已打开的网页),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
'''
//windows cd到chrome所在的文件夹下,再以debug模式启动

chrome.exe --remote-debugging-port=9527 --user-data-dir=“D:\pycharm\zdh_rxy"

--remote-debugging-port远程控制接口
--user-data-dir为项目目录

'''
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
import time
import 观看


options = Options()
options.add_experimental_option("debuggerAddress", "127.0.0.1:9527")
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
s = Service(chromedriver)
browser = webdriver.Chrome(service=s, options=options)

while(True):

        (操作内容。。。)

 

这篇关于python selenium库的使用(控制已打开的网页)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!