无法在柏树中找到该元素

问题描述 投票:-1回答:1

这是我的html标签(突出显示一个):

enter image description here

我试图用cypress点击,但是cypress无法找到它,这就是我正在使用的:

cy.get('sg_button sg newflex hbox acenter ').click()
css-selectors cypress
1个回答
1
投票

你需要使用css selectors,例如:

'.sg_button.sg.newflex.hbox.acenter'

您应该尝试赛普拉斯的选择器操场功能,它将为您提供答案:

enter image description here enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.