标签:form chrome for info image src img code height
from selenium import webdriver import requests driver = webdriver.Chrome(port=6090) url = "http://www.baidu.com" # driver.get(url) # 上面的driver.get(url)步骤相当于下面的requests.post(server_url, json={"url":url})步骤 server_url = "http://localhost:6090/session/{}/url".format(driver.session_id) requests.post(server_url, json={"url":url})
标签:form chrome for info image src img code height
原文地址:https://www.cnblogs.com/lzh501/p/11173633.html