MakeElementVisibleAsync
Description: the method makes the element visible by adding styles
Syntax:
MakeElementVisibleAsync(string by, string locator, string visibility = "visible", int opacity = 1, int index = 1000)
MakeElementVisibleAsync(Locator locator, string visibility = "visible", int opacity = 1, int index = 1000)
Example:
await tester.MakeElementVisibleAsync(Tester.BY_XPATH, "//*[@id='button']");
await tester.MakeElementVisibleAsync(Tester.BY_BY_CSS, "//*[@id='button']");
await tester.MakeElementVisibleAsync(tester.GetLocator("locatorName"));
Created with the Personal Edition of HelpNDoc: Create help files for the Qt Help Framework