Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created June 19, 2016 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/cd9e8c02a539a508a14aa756ce1d6d09 to your computer and use it in GitHub Desktop.
Save angelovstanton/cd9e8c02a539a508a14aa756ce1d6d09 to your computer and use it in GitHub Desktop.
public interface IElement : IElementFinder
{
string GetAttribute(string name);
void WaitForExists();
void WaitForNotExists();
void Click();
void MouseClick();
bool IsVisible { get; }
int Width { get; }
string CssClass { get; }
string Content { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment