public void Dispose() { if (SeleniumDriver.Instance != null) { SeleniumDriver.Quit(); } }
// [Fact(DisplayName = "Should Get AbtKnowledge Home Page Response Time")] public void Should_Go_To_AbtKnowledge_Through_AGI() { SeleniumDriver.init(Browser.RemoteDavidIE); AbtPages.AgiHomePage.Go(); AbtPages.AgiTopNavigation.ToolsDropdown.GoToAbtKnowledge(); Assert.True(AbtPages.AbtKnowledgePage.isAt()); SeleniumDriver.Quit(); }
// [Fact(DisplayName = "Should Get SuccessFactors Home Page Response Time")] //from Agi i dont have access to Successfactor public void Should_Go_To_Atlas_Through_AGI() { SeleniumDriver.init(Browser.RemoteSofianesIE); AbtPages.AgiHomePage.Go(); AbtPages.AgiTopNavigation.ToolsDropdown.GoToAtlas(); Assert.True(AbtPages.SuccessFactorHomePage.isAt()); SeleniumDriver.Quit(); }
/// <summary> /// Checks the Tools & Resources Section; Tools Subsection /// </summary> // [Fact(DisplayName = "Should Get Outlook Home Page Response Time")] public void Should_Go_To_OWA_Through_AGI() { SeleniumDriver.init(Browser.RemoteSofianesIE); AbtPages.AgiHomePage.Go(); AbtPages.AgiTopNavigation.ToolsDropdown.GoTo_OWA(); Assert.True(AbtPages.OutlookWebPage.IsAt()); SeleniumDriver.Quit(); }
public void Edit_Docs_In_The_Knowledge_Hub() { SeleniumDriver.init(Browser.IE); AbtPages.KnowledgeHubLandingPage.Go(); AbtPages.KnowledgeHubLandingPage.AttemptToLogin(); //Open documents online. AbtPages.SharePointDocumentNavigation.OpenDocumentOnline(MS2013documents.KnowledgeHub, documentType.Word); AbtPages.WordOnlinePage.Edit(); SeleniumDriver.Quit(); }
// [Fact(DisplayName = "Co-Authoring Should Edit Word Document Online")] public void Should_Edit_Document_Online() { SeleniumDriver.init(Browser.IE); AbtPages.AgiHomePage.Go(); AbtPages.AgiTopNavigation.Goto(homelinks.Projects); AbtPages.ProjectsPage.Goto(projectslinks.MS2013upgrade); AbtPages.SharePointDocumentNavigation.Goto(MS2013Links.Testing); AbtPages.SharePointDocumentNavigation.Goto(MS2013Links.QA_AuthoringIssueReplication); AbtPages.SharePointDocumentNavigation.OpenDocumentOnline(MS2013documents.QA_ReadinessChecklist_v4, documentType.Word); AbtPages.WordOnlinePage.Edit(); SeleniumDriver.Quit(); }
public void TearDown() { driver.Quit(); }
public void CleanUp() { SeleniumDriver.Quit(); }
public static void AssemblyCleanUp() { SeleniumDriver.Quit(); }