Get property from JSON response in Cypress(从Cypress中的JSON响应中获取属性)
本文介绍了从Cypress中的JSON响应中获取属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有人可以帮助解决以下问题:
{"rowId":"899103a2-a9b1-42t3-bc3w-6we638a43fc3","polygons":[{"polygon1":"40eea45f-ffc8-46vb-9ae6-26f5ba5edf4b","polygon2":{"type":"Polygon","geoId":[[[-45.428529,48.321791],[-45.428529,48.321791],[-45.428529,48.321791],[-45.428148,48.321653],[-45.428164,48.32163],[-45.428529,48.321791]]]}}]}
尝试使用以下代码:
Cypress.Commands.add('updateResponse', (request, elementCss) => {
cy.intercept(request, '**/api/rows*').as('update')
cy.xpath(elementCss)
.click()
.wait('@update', { timeout: 20000 })
.then((xhr) => {
cy.log(JSON.stringify(xhr.response.body))
.its('response.statusCode')
.should('eq', 200)
.its('rowId')
.should('not.be.empty')
})
})
其中请求变量为POST请求。
仅断言响应代码为200。对于第二个断言,rowID不为空,我收到错误:
"*Timed out retrying after 10000ms: cy.its() errored because the property: rowId does not exist on your subject.*"
我还希望断言,多边形2数组不为空,且在大地水准面内具有数据。
我做错了什么?预先感谢您
推荐答案
您可以这样做:
Cypress.Commands.add("updateResponse", (request, elementCss) => {
cy.intercept(request, "**/api/rows*").as("update")
cy.xpath(elementCss)
.click()
.wait("@update", { timeout: 20000 })
.then((xhr) => {
expect(xhr.status).to.eq(200)
expect(xhr.body).to.have.property(
"rowId",
"899103a2-a9b1-42t3-bc3w-6we638a43fc3"
)
expect(xhr.body.rowId).not.to.be.empty
})
})
或者,在您的情况下,您必须提供response.body.rowId
rowId
Cypress.Commands.add("updateResponse", (request, elementCss) => {
cy.intercept(request, "**/api/rows*").as("update")
cy.xpath(elementCss)
.click()
.wait("@update", { timeout: 20000 })
.then((response) => {
cy.log(JSON.stringify(response.body))
.its("response.statusCode")
.should("eq", 200)
.its("response.body.rowId")
.should("not.be.empty")
})
})
这篇关于从Cypress中的JSON响应中获取属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:从Cypress中的JSON响应中获取属性
猜你喜欢
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01