提问者:小点点

Java:无效选择器:指定了无效或非法的选择器


我正在尝试单击支付弹出窗口上的元素:

<label data-v-533987c6="" xpath="1">Card Number:</label>
<input data-v-533987c6="" type="tel" data-mask="#### #### #### ####" data-previous-value="" xpath="1">

使用以下xPath:

@FindBy(name="//div[包含(@class,'buy-票证')]//div/label[text()='Card Number:']/::输入)

但我收到这个错误:

org.openqa.selenium.InvalidSelectorException: invalid selector: An invalid or illegal selector was specified
  (Session info: chrome=80.0.3987.87)
For documentation on this error, please visit: https://www.seleniumhq.org/exceptions/invalid_selector_exception.html
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03'
System info: host: 'DESKTOP-VQ56FMV', ip: '192.168.0.13', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_231'
Driver info: org.openqa.selenium.remote.RemoteWebDriver
Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 80.0.3987.87, chrome: {chromedriverVersion: 80.0.3987.106 (f68069574609..., userDataDir: C:\Users\Nastya\AppData\Loc...}, goog:chromeOptions: {debuggerAddress: localhost:64958}, javascriptEnabled: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: WINDOWS, platformName: WINDOWS, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webdriver.remote.sessionid: 3ca3f388f2b3cf47642733a6f03...}
Session ID: 3ca3f388f2b3cf47642733a6f0383c1e
*** Element info: {Using=name, value=//div[contains(@class,'buy-tickets')]//div/label[text()='Card Number:']/following-sibling::input}

为什么?希望,你能帮我!


共3个答案

匿名用户

根据错误信息

Element info: {Using=name, value=//div[contains(@class,'buy-tickets')]//div/label[text()='Card Number:']/following-sibling::input}

您正在尝试使用另一个xpath

//div[contains(@class,'buy-tickets')]//div/label[text()='Card Number:']/following-sibling::input`

使用By.name,无效。您需要使用By. xpath

匿名用户

错误信息正在解释自己

***元素信息:{使用=名称,值=//div[包含(@class,'buy-需求量')]//div/label[text()='Card Number:']/::输入}

您使用的是xpath,但选择器使用的是名称

driver.findElement(By.xpath("//label[contains(text(),'Card Number')]/following-sibling::input"));

匿名用户

你似乎很接近了。虽然你在代码中提到定位器策略是By.name,但是你传递的值:

//label[text()='Expiration Date:']//following::input[@type='tel'][1]

类似于xpath。因此,您需要使用By. xpath而不是使用By.name,并且您可以使用以下任一解决方案:

>

  • xpath 1使用以下内容:

    driver.findElement(By.xpath("//label[text()='Card Number:']//following::input[1]"))
    

    xpath 2使用以下兄弟姐妹:

    driver.findElement(By.xpath("//label[text()='Card Number:']//following-sibling::input[1]"))