find() defaults to find("") but findAll doesn't
Opened this issue · 0 comments
XuluWarrior commented
The implementation of find (or getElement) has a default, "", value for the first argument. Meaning that find() is equivalent to find("").
However, findAll doesn't have this default value and so findAll() equates to findAll("undefined")
This seems inconsistent and caused me a bit of confusion debugging.
(findWithAssert also doesn't default the first argument)