Grinevych Dmytro
Grinevych Dmytro
I'd like to do it, but my free time consists mainly of weekends =)
Also i have doubts about different realization. As I understand, changing Attribute.Invoke() implementation is not good idea? Should we create some new conditions like Name: `Condition?`
> > > Also i have doubts about different realization. As I understand, changing Attribute.Invoke() implementation is not good idea? Should we create some new conditions like Name: `Condition?` Or...
Here is some of my thoughts: 1 create new condition: ``` public class AttributeExists : Condition { private static string _name; public AttributeExists(string name) { _name = name; } public...
consider adding as extensions to support namespace things like Overwrite via Ctrl/Command + A + keys
@yashaka is something like this enough?: ``` public static SeleneElement Overwrite(this SeleneElement element, string value) { if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { element.Type(Keys.Command + "a" + Keys.Command + value); } else { element.Type(Keys.Control...