没有这样的元素:无法找到元素:{“方法":“css选择器",“选择器":“body select[name='Accept']"}

no such element: Unable to locate element: {quot;methodquot;:quot;css selectorquot;,quot;selectorquot;:quot;body select[name=#39;Accept#39;]quot;}(没有这样的元素:无法找到元素:{“方法:“css选择器,“选择器:“body select[name=Accept]})
本文介绍了没有这样的元素:无法找到元素:{“方法":“css选择器",“选择器":“body select[name='Accept']"}的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个

<li><a class="dropdown-item" href="{{route('user.invite_accept',[$user->id,1])}}">Accept</a></li>

我正在尝试使用 laravel 黄昏单击它,我使用了选择、单击、单击链接但它不起作用

I am trying to click on it using laravel dusk I used select, click,clicklink But it doesn't work

推荐答案

您的选择器似乎有误,您似乎正在尝试单击 hyperlink 由 表示<a> 标记,而您的 CSS 表达式正在寻找 <代码><选择>

Your selector seems to be wrong, it appears that you're trying to click a hyperlink which is represented by <a> tag while your CSS expression is looking for a <select>

尝试将您的定位器转换为 通过链接文本查找元素 比如:

Try converting your locator to find element by link text like:

driver.findElement(By.linkText("Accept"))

或者使用 XPath 定位器,例如:

driver.findElement(By.xpath("//a[text()='Accept']"))

这篇关于没有这样的元素:无法找到元素:{“方法":“css选择器",“选择器":“body select[name='Accept']"}的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)