I need to find the following element on the web page
<div class="b-datalist__item__addr">[email protected]</div>
I'm coding with Java for Selenium WebDriver.
Need the exact CSS selector for this element to use it with driver.findElement(By.cssSelector(the-selector).click command.
div[class='b-datalist__item__addr'] selector is not good enough since I must search according to [email protected] text that is not a link so I can't use findElement(By.linkText()) command.