The `TestBenchElement.$` function considers all descendants, which is sometimes not what we want. For example, in https://github.com/vaadin/testbench/issues/1886 I want to select the form item's label, but accidentally TextField's label element gets selected. Workaround: call `TestBenchElement.findElements(By.xpath("label"));`.