如何在cypress中复制价值并找到用户
Posted
技术标签:
【中文标题】如何在cypress中复制价值并找到用户【英文标题】:How to copy value and find the user in cypress 【发布时间】:2021-08-29 00:32:43 【问题描述】:我尝试从字段中复制值(*名字'**),然后我想查找是否在用户列表中
但是,当我在 serarch 字段中输入 ('@value') 时,cypress 会像文本一样输入 @value
enter image description here enter image description here
cy.contains('First name*').invoke('val').as('value')
cy.get('.search-wrap').first().click().type('@value','enter', timeout:10000)
【问题讨论】:
【参考方案1】:我会这样写:
cy
.contains('First name*')
.invoke('val')
.should(val =>
cy
.get('.search-wrap')
.first()
.click()
.type(`$valenter`, timeout: 10000 );
);
【讨论】:
以上是关于如何在cypress中复制价值并找到用户的主要内容,如果未能解决你的问题,请参考以下文章