我已经安装了OpenTest,并想开始一个新的会话。
我该怎么做?
我尝试在Google上进行搜索,但只找到了一个谈论使用API的公关。
答案 0 :(得分:1)
以https://getopentest.org/docs/environments.html为指导,阅读第1步,我相信单击图中所示的加号是一次开始新会话的方式。
答案 1 :(得分:1)
有三种方法可以启动测试会话:
Session
/ Create Test Session...
菜单选项,然后选择要运行的测试,根据需要填写其他测试会话属性,然后单击Create Session
按钮。Session
/ Create Session From Template...
template
属性。模式详细信息here。API调用示例:
POST http://localhost:3000/api/session
{
"environment": "prod",
"sessionLabel": "Run smoke tests",
"tests": [
{
"path": ".",
"name": "Smoke test 1"
},
{
"path": ".",
"name": "Web test 2"
}
]
}