Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[🐛 Bug]: Selenium Using Css Selector with tilde signature is throwing org.openqa.selenium.InvalidSelectorException: invalid selector: #14102

Closed
vlaks85 opened this issue Jun 7, 2024 · 7 comments
Labels
I-defect I-logging Applied to issues where logging information would help troubleshoot R-awaiting answer

Comments

@vlaks85
Copy link

vlaks85 commented Jun 7, 2024

What happened?

[🐛 Bug]: Selenium Using Css Selector with tilde signature is throwing org.openqa.selenium.InvalidSelectorException: invalid selector:
Below is the locator I'm using with CSS Selector but its throwing Invalid or illegal selector - div[data-testid^='Item_asin'], ~ span[data-testid^='Item_asin']

org.openqa.selenium.InvalidSelectorException: invalid selector: An invalid or illegal selector was specified
(Session info: chrome=108.0.5359.124) for the locator {Using=css selector, value=div[data-testid^='Item_asin'], ~ span[data-testid^='Item_asin']}

I want use CSS selector for my use Case. Any way to handle the ~ or + to get the siblings using CSS Selector.

How can we reproduce the issue?

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;

import java.util.List;

public class Main {
    public static void main(String[] args) {
        System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
        WebDriver driver = new ChromeDriver();
        
        driver.get("http://yourwebsite.com");

        // Adjust the selector based on your HTML structure
        List<WebElement> elements = driver.findElements(By.cssSelector("div.lineitem-container ~ span[data-testid^='item']"));
        
        for (WebElement element : elements) {
            System.out.println(element.getText());
        }
        
        driver.quit();
    }
}

Relevant log output

org.openqa.selenium.InvalidSelectorException: invalid selector: An invalid or illegal selector was specified
  (Session info: chrome=108.0.5359.124) for the locator {Using=css selector, value=div[data-testid^='Item_asin'], ~ span[data-testid^='Item_asin']}

Operating System

Ubuntu

Selenium version

Java 11

What are the browser(s) and version(s) where you see this issue?

108 Chrome

What are the browser driver(s) and version(s) where you see this issue?

chrome=108.0.5359.124

Are you using Selenium Grid?

No response

Copy link

github-actions bot commented Jun 7, 2024

@vlaks85, thank you for creating this issue. We will troubleshoot it as soon as we can.


Info for maintainers

Triage this issue by using labels.

If information is missing, add a helpful comment and then I-issue-template label.

If the issue is a question, add the I-question label.

If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label.

If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C), add the applicable G-* label, and it will provide the correct link and auto-close the issue.

After troubleshooting the issue, please add the R-awaiting answer label.

Thank you!

@titusfortner titusfortner added the I-logging Applied to issues where logging information would help troubleshoot label Jun 7, 2024
Copy link

github-actions bot commented Jun 7, 2024

We need more information about this issue in order to troubleshoot.

Please turn on logging and re-run your code. Information on how to adjust logs for your language can be found in our
Troubleshooting documentation.

@titusfortner
Copy link
Member

What version of selenium? Turn on logging and we can see which component complains.

@vlaks85
Copy link
Author

vlaks85 commented Jun 8, 2024

Build info: version: '3.141.59'

@titusfortner
Copy link
Member

We can't do anything about older versions, please try with Selenium 4.21

Copy link

This issue was closed because we did not receive any additional information after 14 days.

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Jun 22, 2024
Copy link

This issue has been automatically locked since there has not been any recent activity since it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked and limited conversation to collaborators Jul 22, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
I-defect I-logging Applied to issues where logging information would help troubleshoot R-awaiting answer
Projects
None yet
Development

No branches or pull requests

2 participants