gpt4 book ai didi

基于python+selenium自动健康打卡的实现代码

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章基于python+selenium自动健康打卡的实现代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

每天都要记得健康打卡

尊敬的老师,我忘了这次的健康打卡,反思的时候我想了很多东西,反省了很多事情,自己也很懊悔,触犯了学校的规定,深刻认识到自己所犯错误的严重性… 卡!那是小学生才有的检讨。作为一个有点懒的人,对于每次的健康打卡,都是做着重复性的填写,这让本人很是头疼,那就找找止疼药吧 。

使用的工具

需要有一定的python,html基础,和实践能力(毕竟实践出真知,实践能力强,你可以忽略前两个,你是最棒的!):

  • pycharm ,在pycharm官网里面下载社区版或专业版(没其他的用途推荐用社区版);
  • python 我使用的是python3.8,在官网下载,可参考python安装,配置好环境变量方便cmd 装包;
  • selenium在cmd输入 pip install selenium ,分布式自动化测试工具,用于模拟用户在浏览器的行为;
  • chromedriver 这个是在pycharm里面驱动chrome浏览器,下载后解压放在script下面,chromedriver需要和自己的谷歌浏览器版本相对应

基于python+selenium自动健康打卡的实现代码

置于桌面 将你写好的py文件放在桌面或者你设置开机自启动管理运行该程序就可以了 。

基于python+selenium自动健康打卡的实现代码

接下来就是代码了

代码中必要的地方都进行了注释,注释的多的地方就是我停留较久的地方,,,实习自动打卡的功能算是实现了,但还是有一些问题,比如说网络延时,当网页还未加载出来,你就无法定位该html元素,该程序就无法正常执行完操作,可以发一封邮件提醒你补填。欢迎大家共同探讨遇到的问题或者文章中有其他不足之处还望雅正.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import time
from selenium import webdriver
from selenium.webdriver.common.keys import keys
from selenium.webdriver.common.action_chains import actionchains
 
# 脚本自动登录该网页
driver = webdriver.chrome()
# 将健康表的地址copy过来就行
driver.get( "你的健康表地址" )
time.sleep( 2 )
 
print ( "开始点击----立即登录" )
# 第一次点击登录跳转
driver.find_element_by_xpath( '//*[@id="header-login-btn"]' ).click()
time.sleep( 5 )
 
print ( "开始点击快速登录" )
 
# # selenium判断元素是否可以点击或者处理
# element = driver.find_element_by_id("img_out_191736586")
 
# element = driver.find_element_by_xpath('//*[@id="img_out_191733686"]')
# bianji = element.is_enabled() #是否可以编辑,或者按钮是否可以点击
# xinashi = element.is_displayed() #:判断元素是否显示
# xunazhong = element.is_selected() #:判断元素是否选中状态
# print(bianji,xinashi,xunazhong)
# element.click()
 
# 想了想为啥定位不到那个快速登录元素,原来html知识不够,切进iframe
driver.switch_to.frame( 0 ) # 1.用frame的index来定位,第一个是0
# driver.switch_to.frame("frame1") # 2.用id来定位
# driver.switch_to.frame("myframe") # 3.用name来定位
# driver.switch_to.frame(driver.find_element_by_tag_name("iframe")) # 4.用webelement对象来定位
 
# 快捷登录
driver.find_element_by_xpath( '//*[@id="img_out_1917336586"]' ).click()
# driver.find_elements_by_class_name('img_out_focus')[0].click()
time.sleep( 15 )
 
print ( "点击大数据人工智能一班sheet" )
# driver.find_elements_by_class_name("sheet-tab-name")[2].click()
driver.find_element_by_xpath( '//*[@id="sheetbar"]/div[2]/div[3]/div/div[4]/span' ).click()
time.sleep( 3 )
 
print ( "开始点击更多" )
driver.find_element_by_xpath( '//*[@id="toobarmorebutton"]/div/div/div[1]' ).click()
# driver.find_element_by_class_name("toolbar-menu-button-more toolbar-inline-block").click()
time.sleep( 10 )
 
print ( "点击搜索" )
driver.find_elements_by_xpath( '//*[@id="sheet-search-button"]/div/div/div' )[ 1 ].click()
time.sleep( 3 )
 
print ( "开始点击搜索框" )
getinput = driver.find_element_by_xpath( '//*[@id="search-panel-input"]' )
getinput.send_keys( "北极熊" )
time.sleep( 2 )
print ( "已获取该位置" + getinput.location)
time.sleep( 2 )
 
# key.tab选择,kys.enter确定结束
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys("")
actionchains(driver).key_down(keys.tab).perform()
actionchains(driver).key_down(keys.tab).perform()
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys( "是" )
actionchains(driver).key_down(keys.tab).perform()
actionchains(driver).key_down(keys.tab).perform()
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys( "是" )
actionchains(driver).key_down(keys.tab).perform()
actionchains(driver).key_down(keys.tab).perform()
actionchains(driver).key_down(keys.tab).perform()
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys( "否" )
actionchains(driver).key_down(keys.tab).perform()
actionchains(driver).key_down(keys.tab).perform()
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys( "否" )
actionchains(driver).key_down(keys.tab).perform()
driver.find_element_by_id( 'alloy-simple-text-editor' ).click()
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys( "填写你的地址" )
driver.find_element_by_id( 'alloy-simple-text-editor' ).send_keys(keys.enter)
time.sleep( 1 )

小结

上面的代码是根据我所填写的健康表流程写的,或许你并不能直接拿过去用,(这也正是我所期望的,哈哈),但是里面的功能实现比较清楚的,这样你就可以按照你的流程写代码了。good good study, day day up. 。

到此这篇关于基于python+selenium自动健康打卡的文章就介绍到这了,更多相关selenium自动健康打卡内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。

原文链接:https://blog.csdn.net/qq_46022736/article/details/112427369 。

最后此篇关于基于python+selenium自动健康打卡的实现代码的文章就讲到这里了,如果你想了解更多关于基于python+selenium自动健康打卡的实现代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com