标签:clear https url tps 二次元 input find key rom
from selenium import webdriver
import time
browser = webdriver.Chrome()
url = ‘https://baidu.com‘
browser.get(url)
input_msg = browser.find_element_by_xpath(‘//*[@id="kw"]‘)
input_msg.send_keys(‘二次元图片‘)
submit = browser.find_element_by_xpath(‘//*[@id="su"]‘)
submit.click()
time.sleep(1)
input_msg.clear()
input_msg.send_keys(‘三次元图片‘)
time.sleep(1)
browser.close()
#Google 71(64 位) + ChromeDriver v2.45
标签:clear https url tps 二次元 input find key rom
原文地址:https://www.cnblogs.com/dream-life/p/10350218.html