如何在Ghost Inspector中通过xPath查找元素

问题描述 投票:2回答:3

您必须在Ghost Inspector中使用其xPath单击一个元素,但它对我不起作用,我尝试的语法是:

  1. "xpath=".XPATH
  2. "xpath="XPATH
  3. xpath=.XPATH
  4. xpath=XPATH

我试过的所有上述事情都没有奏效,Ghost Inspector说:

“没有找到元素”

任何人都可以帮我在Ghost Inspector中使用xPath查找元素

automation ghost-inspector
3个回答
3
投票

你应该使用xpath = //

例如:xpath = // * [@ id =“main-container”] / div [1] / my-header / div

文档:https://ghostinspector.com/docs/test-editor/#targets


2
投票

我在Chrome中使用开发人员工具,我可以选择(通过鼠标右键单击)我要复制的值。尝试复制xPath,它应该工作,我使用它们很多。


-2
投票

Ghost Inspector不支持XPath,您只能使用CSS选择器。如果要将XPath,CSS选择器,ID,类名等用作定位器,则应使用Endtest而不是Ghost Inspector。

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