gpt4 book ai didi

testing - 使用 Testcafe 选择器 : withText then sibling

转载 作者:行者123 更新时间:2023-12-01 00:15:03 32 4
gpt4 key购买 nike

我正在尝试使用 withText 创建一个选择器过滤并想要选择同级元素。

给定:const Create_asset = S('span').withText('Create Asset')Create_asset()返回 ReExecutablePromisenextSibling()方法。await Create_asset()返回一个类似 DOM(?) 的对象,但没有 nextSibling()方法,所以看来我做不到await Create_asset().withText('text').nextSibling()
使用 withText() 时如何随后选择 sibling 筛选?

也感谢您提供任何调试技巧!

最佳答案

下面的代码返回 DOM Node Snapshot .

const mySelector = Selector('span').withText('text');
const snapshot = await mySelector();

在您的测试场景中,您可以执行以下操作:
await t

.expect(mySelector.withText('some text').nextSibling().getAttribute('id')).eql('id1');

注: TestCafe allows you to debug server-side test code and test behavior on the client

关于testing - 使用 Testcafe 选择器 : withText then sibling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53506074/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com