我有 curl 命令,但不确定如何在 python 脚本中运行它。
curl -H "Content-Type: application/json" -u "username:password" -d '{ "name":"something" }' "https://xxxxxxxx"
我打算使用子流程,但是 api 文档不是很有帮助。
还有人知道如何从 testrail 中获取 sectionId 吗?
我有 curl 命令,但不确定如何在 python 脚本中运行它。
curl -H "Content-Type: application/json" -u "username:password" -d '{ "name":"something" }' "https://xxxxxxxx"
我打算使用子流程,但是 api 文档不是很有帮助。
还有人知道如何从 testrail 中获取 sectionId 吗?
来自 TestRail 的比尔在这里。您可以在此处找到我们的 Python 绑定的链接:
http://docs.gurock.com/testrail-api2/bindings-python
关于获取部分 ID,您可以使用项目/套件的 get_sections 方法返回所有部分详细信息,包括 ID。您可以在此处找到更多信息:
http://docs.gurock.com/testrail-api2/reference-sections#get_sections
如果您要查找特定测试用例的部分 ID,可以从 get_case 方法中获取。
您可能想为此使用该requests
软件包。curl 命令转换为如下内容:
import json
import requests
response = requests.post('https://xxxxxxxx',
data=json.dumps({'name': 'something'}),
headers={'Content-Type': 'application/json'},
auth=('username', 'password'))
response_data = response.json()
如果你真的想使用subprocess
,你可以这样做:
import subprocess
curl_args = ['curl', '-H', 'Content-Type: application/json', '-u', 'username:password',
'-d', '{ "name":"something" }', 'https://xxxxxxxx']
curl_output = subprocess.check_output(curl_args)
我认为后一种方法不那么“Pythonic”。