首页 > 解决方案 > 无法获得有效的选择器来实现 I.click()

问题描述

当我 F12 时,我试图单击具有这些详细信息的按钮

<a data-codecept="searchGo" id="9" class="a-button a-button--white clearfix block showall" suggestrow"="" alt="/s/lundhags/?searchparam=lundhags" onmouseover="suggest.handleMouseOver(9);" onmouseout="suggest.handleMouseOut(9)" onclick="suggest.handleSubmit();" xpath="1">Show all results for 'lundhags'<span class="a-icon a-button__icon a-button__icon--double-arrow"></span></a>

我已经复制了 xpath,我有这样的代码=> I.click('//*[@id="9"]');

我得到了这个错误 Clickable //*[@id="9"] was not found by text|CSS|XPath

我究竟做错了什么?

标签: nightmarecodeceptjs

解决方案


现在可以了!我使用了特定的标识符

I.click('[data-codecept="searchGo"]');

推荐阅读