Results 5 comments of 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...

@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...