v1.2.5
- [NEW ✨] Elements can be located based on properties it doesn't have.
- To find a div tag with "foo" as a class name:
DivTag.WithClass("foo")
- To find a div tag without "foo" as a class name:
DivTag.WithClass("foo", false)
- To find a div tag with "foo" as a class name:
- [HOUSEKEEPING 🧹] Added ability to configure "HideCommandPromptWindow". It is true by default.