You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ideally, something like div().that(hasCssClass("myclass")).that(hasAttribute("attr",startsWith("A"))) would optimise to use By.cssSelector withdiv.myclass[attr^="A") rather than current behaviour which guesses the most specific criterion and produces a single selenium command from that, (checking the other criteria manually)
The text was updated successfully, but these errors were encountered:
ideally, something like
div().that(hasCssClass("myclass")).that(hasAttribute("attr",startsWith("A")))
would optimise to useBy.cssSelector
withdiv.myclass[attr^="A")
rather than current behaviour which guesses the most specific criterion and produces a single selenium command from that, (checking the other criteria manually)The text was updated successfully, but these errors were encountered: