There are several CSS webelements on my page with ids in the format:
cell_[number]-button_[number]
I am attempting to target ALL of these elements by using Selenium to locate all elements that begin with cell and include button:
var elements = Util.driver.findElements(By.cssSelector("[id^='cell_'] and [id*='button']"));
Is this the correct approach? Upon running this code, it returns a list with no elements, indicating an issue.