赞
踩
UI
和接口自动化练习时,有时候找不到合适的对象,我们可使用禅道来联系;API
手册;Windows
版本:Windows
一键安装”下载即可。Extract
,等待安装:exe
文件双击打开:# 账号:admin
# 密码:123456
API
接口:http://127.0.0.1/zentao/api.php/v1/对应API接口名称
token
接口来看下请求数据:# -*- coding:utf-8 -*-
# 作者:虫无涯
# 日期:2023/7/25
# 文件名称:test03.py
# 作用:验证登录接口
# 联系:VX(NoamaNelson)
# 博客:https://blog.csdn.net/NoamaNelson
import requests
import json
import time
header = {"Content-Type": "application/json"}
url = "http://127.0.0.1/zentao/api.php/v1/tokens"
data = {"account": "admin", "password": "123456"}
r_data = json.dumps(data)
r = requests.post(url=url, data=r_data, headers=header)
print(f"返回的token为:{r.text}")
D:\Python37\python.exe F:/python_study/test03.py
返回的token为:{"token":"d0062b99d36103950765f6a5d72286a9"}
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get("http://127.0.0.1/zentao/user-login.html")
time.sleep(1)
driver.maximize_window()
driver.find_element_by_id("account").send_keys("admin")
time.sleep(0.5)
driver.find_element_by_xpath("/html/body/main/div/div[1]/div/div[2]/form/table/tbody/tr[2]/td/input").send_keys("123456")
time.sleep(0.5)
driver.find_element_by_id("submit").click()
time.sleep(1)
driver.quit()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。