I am using Selenium to test a website, does this work if I find and element by more than one criteria? for example :
driverChrome.findElements(By.tagName(\"
To combine By statements, use ByChained:
driverChrome.findElements( new ByChained( By.tagName("input"), By.id("id_Start"), By.className("blabla") ) )
However if the criteria refer to the same element, see @Saifur's answer.