我可以测试 cypress 以从网络工具中捕获签名吗
Can i test cypress to capture signature from network tools
当我点击某些 url 时,它会在开发人员工具 -> 网络工具下触发一个签名 url。
我可以使用 cypress 来测试在 Developer tools 中触发的任何东西吗?
你看过Intercept command了吗?你可以用它抓取任何网络请求。
最基本的形式:
cy.intercept({
method: 'GET',
url: '/users*',
hostname: 'localhost',
}).as('usersRequest')
cy.wait('@usersRequest')
.then(interception => {
// interception has similar data to Chrome devtools
})
当我点击某些 url 时,它会在开发人员工具 -> 网络工具下触发一个签名 url。 我可以使用 cypress 来测试在 Developer tools 中触发的任何东西吗?
你看过Intercept command了吗?你可以用它抓取任何网络请求。
最基本的形式:
cy.intercept({
method: 'GET',
url: '/users*',
hostname: 'localhost',
}).as('usersRequest')
cy.wait('@usersRequest')
.then(interception => {
// interception has similar data to Chrome devtools
})