Hello Team, I wanted to point out a severe flaw in the performance of the Find method provided by the tool, compared to the QuerySelector (also provided by the tool).
When working with web applications, especially those developed in Angular or React, where there are a huge amount of web elements, I noticed that using the Find method can take up to 25 seconds to find, for example, a checkbox inside a pop-up, compared to the 0.21 seconds it takes when using the QuerySelector method (both executed from the main process, which in my case is the browser's web page).
It might be useful if you implement a way to improve the performance of the Find method by internally switching to the QuerySelector when we use common identifiers (like idStr or className).
Thanks.