IsVisibleElementAsync
Description: the method determines the visibility of the element and returns the value true or false
Syntax: IsVisibleElementAsync(string by, string locator)
Return value: bool (true or false)
Example:
FRAMEElement frame = await tester.GetFrameAsync(0);
bool result = await frame.IsVisibleElementAsync(Tester.BY_XPATH, "//*[@id='login']");
bool result = await frame.IsVisibleElementAsync(Tester.BY_CSS, "#login");
await frame.AssertTrueAsync(result);
Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator