Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
U
ubains-module-test
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
郑晓兵
ubains-module-test
Commits
27893344
提交
27893344
authored
10月 08, 2024
作者:
彭甘宇
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增-运维登录测试
上级
a16c4b75
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
85 行增加
和
0 行删除
+85
-0
登录功能.py
运维集控/项目测试/运维标准版/登录功能.py
+85
-0
登录用户数据.xlsx
运维集控/项目测试/运维标准版/登录用户数据.xlsx
+0
-0
没有找到文件。
运维集控/项目测试/运维标准版/登录功能.py
0 → 100644
浏览文件 @
27893344
import
pandas
as
pd
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
from
selenium.webdriver.edge.service
import
Service
from
selenium.webdriver.edge.options
import
Options
import
logging
import
time
file_path
=
r'C:\Users\EDY\Desktop\git\运维自动化脚本\运维集控\项目测试\运维标准版\登录用户数据.xlsx'
df
=
pd
.
read_excel
(
file_path
)
#driver = webdriver.Chrome()
edge_options
=
Options
()
edge_options
.
add_argument
(
'--ignore-certificate-errors'
)
edge_options
.
add_argument
(
'--disable-blink-features=AutomationControlled'
)
driver
=
webdriver
.
Edge
(
options
=
edge_options
)
logging
.
basicConfig
(
level
=
logging
.
INFO
,
format
=
'
%(asctime)
s -
%(levelname)
s -
%(message)
s'
)
def
login
(
account
,
password
,
captcha_solution
):
try
:
# 定位并填写用户名
username_input
=
WebDriverWait
(
driver
,
3
)
.
until
(
EC
.
presence_of_element_located
((
By
.
XPATH
,
"//input[@placeholder='请输入登录账号']"
))
)
username_input
.
clear
()
username_input
.
send_keys
(
account
)
# 定位并填写密码
password_input
=
WebDriverWait
(
driver
,
3
)
.
until
(
EC
.
presence_of_element_located
((
By
.
XPATH
,
"//input[@placeholder='请输入登录密码']"
))
)
password_input
.
clear
()
password_input
.
send_keys
(
password
)
# 定位并填写验证码
captcha_input
=
WebDriverWait
(
driver
,
3
)
.
until
(
EC
.
presence_of_element_located
((
By
.
XPATH
,
"//input[@placeholder='请输入验证码(区分大小写)']"
))
)
captcha_input
.
clear
()
captcha_input
.
send_keys
(
captcha_solution
)
# 登录
login_button
=
WebDriverWait
(
driver
,
3
)
.
until
(
EC
.
element_to_be_clickable
((
By
.
XPATH
,
"//div[@class='loginButton']"
))
)
login_button
.
click
()
time
.
sleep
(
5
)
try
:
success_popup
=
WebDriverWait
(
driver
,
5
)
.
until
(
EC
.
presence_of_element_located
((
By
.
XPATH
,
"//*[contains(text(), '操作成功!')]"
))
)
logging
.
info
(
f
"登录成功: {account}"
)
return
True
except
:
try
:
error_popup
=
WebDriverWait
(
driver
,
3
)
.
until
(
EC
.
presence_of_element_located
(
(
By
.
XPATH
,
"//*[contains(text(), '输入的用户或密码不一致') or contains(text(), '验证码无效,请重新输入')]"
))
)
logging
.
error
(
f
"登录失败: {account}"
)
return
False
except
:
logging
.
error
(
f
"登录失败: {account}"
)
return
False
except
Exception
as
e
:
logging
.
error
(
f
"发生错误: {e}"
)
return
False
# 打开登录页面
driver
.
get
(
"https://192.168.1.118:8443/#/login"
)
for
index
,
row
in
df
.
iterrows
():
account
=
row
[
'account'
]
password
=
row
[
'password'
]
captcha_solution
=
row
[
'certcode'
]
login_result
=
login
(
account
,
password
,
captcha_solution
)
driver
.
refresh
()
# 关闭浏览器
driver
.
quit
()
\ No newline at end of file
运维集控/项目测试/运维标准版/登录用户数据.xlsx
0 → 100644
浏览文件 @
27893344
File added
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论