引言
"_blank" href="https://chromedriver.storage.googleapis.com/index.html">ChromeDriver:从ChromeDriver镜像站里找到谷歌浏览器版本号对应的文件夹并打开,从中找到对应的系统后下载。"_blank" href="https://f.wps.cn/form-write/uwDUPB2N/">WPS表单。
"text-align: left">"text-align: left">"htmlcode">
answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_"htmlcode">answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_"htmlcode">localtime = time.localtime(time.time()) if localtime.tm_hour < 7: t = 0 print("填写时间为:0700-0900") elif localtime.tm_hour < 11: t = 1 print("填写时间为:1100-1200") else: t = 2 print("填写时间为:1800-2000") answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_"htmlcode">answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-picker'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-today-btn'))) answer.click()"htmlcode">
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import time # WPS表单的网址 url = 'https://f.wps.cn/form-write/uwDUPB2N/' # 完成浏览器对象的初始化,设定超时时间为10秒。 browser = webdriver.Chrome() wait = WebDriverWait(browser, 10) browser.get(url) ################################ # 针对INPUT组件,XXX替换成自己的内容。 answer = wait.until(EC.element_to_be_clickable((By.ID, 'input_0'))) answer.send_keys('XXX') # 针对LABEL组件。 answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_1_0'))) answer.click() # 针对INPUT组件,XXX替换成自己的内容。 answer = wait.until(EC.element_to_be_clickable((By.ID, 'input_2'))) answer.send_keys('18') # 针对LABEL组件。 answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_3_0'))) answer.click() # 针对PICKER组件。 answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-picker'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-today-btn'))) answer.click() # 针对询问时间的INPUT组件。 localtime = time.localtime(time.time()) if localtime.tm_hour < 7: t = 0 print("填写时间为:0700-0900") elif localtime.tm_hour < 11: t = 1 print("填写时间为:1100-1200") else: t = 2 print("填写时间为:1800-2000") answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_5_' + str(t)))) answer.click() ################################ # 等待10秒 time.sleep(10) # 点击提交 commit = wait.until(EC.element_to_be_clickable((By.ID, 'submit_button'))) commit.click() # 确认提交 yes = wait.until(EC.element_to_be_clickable((By.ID, 'bind_phone_modal_confirm_button'))) yes.click() # 反馈成功 print('Perfect!')"htmlcode">
# 点击提交 commit = wait.until(EC.element_to_be_clickable((By.ID, 'submit_button'))) commit.click() # 确认提交 yes = wait.until(EC.element_to_be_clickable((By.ID, 'bind_phone_modal_confirm_button'))) yes.click()"htmlcode">
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import time url = '填入WPS表单的网址' browser = webdriver.Chrome() wait = WebDriverWait(browser, 10) browser.get(url) answer = wait.until(EC.element_to_be_clickable((By.ID, 'input_0'))) answer.send_keys('XXX') answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_1_1'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_2_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_3_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-picker'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.ant-calendar-today-btn'))) answer.click() localtime = time.localtime(time.time()) if localtime.tm_hour < 7: t = 0 print("填写时间为:0700-0900") elif localtime.tm_hour < 11: t = 1 print("填写时间为:1100-1200") else: t = 2 print("填写时间为:1800-2000") answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_5_' + str(t)))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'input_6'))) answer.send_keys('36.6') answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_7_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_8_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_9_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_10_1'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_11_0'))) answer.click() answer = wait.until(EC.element_to_be_clickable((By.ID, 'select_label_wrap_12_0'))) answer.click() time.sleep(5) commit = wait.until(EC.element_to_be_clickable((By.ID, 'submit_button'))) commit.click() yes = wait.until(EC.element_to_be_clickable((By.ID, 'bind_phone_modal_confirm_button'))) yes.click() print('Perfect!')总结
以上所述是小编给大家介绍的Python3+Selenium+Chrome自动填写WPS表单,希望对大家有所帮助!
尾言
最后,祝福武汉早日康复,武汉加油!
最新资源
- 群星《新说唱2024 第12期 (下)》[FLAC/分轨][50
- 李常超 (Lao乾妈)《天生江湖》[320K/MP3][168.8
- 李常超 (Lao乾妈)《天生江湖》[FLAC/分轨][633.
- 群星《雨果发烧碟二十》UPMAGCD2024[WAV+CUE]
- 刘德丽《赤的疑惑》限量1:1黄金母盘直刻[低速原
- 柏菲·珞叔作品集《金色大厅2》限量开盘母带ORMC
- Gareth.T《sad songs(Explicit)》[320K/MP3][29
- Gareth.T《sad songs(Explicit)》[FLAC/分轨][1
- 证声音乐图书馆《海风摇曳·盛夏爵士曲》[320K/M
- 龚玥《金装龚玥HQCD》头版限量[WAV分轨]