I have a question regarding my Selenium code. I am currently using the following snippet:
WaitForElement(By.CssSelector("#document-count:contains(<number greater than 0>)"));
The part where I'm stuck is specifying number greater than 0
. Is there a way to use CSS alone to verify if an element's inner text contains a value other than 0?