Find elements with an id, class or name derived By selector where possible #333
Comments
This issue relates to #306 |
I'm not sure that we should be getting into parsing css selectors as this is complex and best left to driver implementations. Given that, if you use a css selector ( The implementation has been changed to use an appropriate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Originally created by SergeyA.
Expressions like
$("#myid").value("test")
are about two times slower than their Selenium analognew Select(driver.findElement(By.id("test"))).selectByValue("N")
I believe it is because all selectors are translated to By.cssSelector in NonEmptyNavigator.find without any optimizations by selector type.
The text was updated successfully, but these errors were encountered: