コード例 #1
0
 public void Dispose()
 {
     if (SeleniumDriver.Instance != null)
     {
         SeleniumDriver.Quit();
     }
 }
コード例 #2
0
 //  [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();
 }
コード例 #3
0
 //  [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();
 }
コード例 #4
0
        /// <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();
        }
コード例 #5
0
 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();
 }
コード例 #6
0
 //  [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();
 }
コード例 #7
0
 public void TearDown()
 {
     driver.Quit();
 }
コード例 #8
0
ファイル: Oracle.cs プロジェクト: QAABTASSOC/AbtFramework
 public void CleanUp()
 {
     SeleniumDriver.Quit();
 }
コード例 #9
0
 public static void AssemblyCleanUp()
 {
     SeleniumDriver.Quit();
 }