幽灵资源网 Design By www.bzswh.com
引言
"_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表单,希望对大家有所帮助!
尾言
最后,祝福武汉早日康复,武汉加油!
幽灵资源网 Design By www.bzswh.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
幽灵资源网 Design By www.bzswh.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。