/// <summary> /// Click the "A template" link in the "Start From" page /// </summary> public void ClickFromTemplate() { try { BaseWaitForPageToLoad(Driver, 100); FromTemplate.Click(); } catch (Exception e) { throw e; } }
/// <summary> /// Click the "A template" link in the "Start From" page /// </summary> public void ClickFromTemplate() { FromTemplate.WaitAndClick(_driver); }