/// <summary>
        /// Performs the playback of actions in this module.
        /// </summary>
        /// <remarks>You should not call this method directly, instead pass the module
        /// instance to the <see cref="TestModuleRunner.Run(ITestModule)"/> method
        /// that will in turn invoke this method.</remarks>

        void ITestModule.Run()
        {
            Preconditions.Init();
            Helper.WaitTillPageIsLoaded();
            PrivatePipelinePageObj.OpeningPrivatePipelineScreen();
            Helper.WaitTillPageIsLoaded();
            Helper.WaitForTimeInMilliSeconds(3000);
            PrivatePipelinePageObj.LandingPrivatePipelineScreen_Validation();
            Helper.WaitTillPageIsLoaded();
            PrivatePipelinePageObj.EnterSearchTextinPrivatePipeline(PrivatePipelineCNQName, PrivatePipelineCCESName);
        }
 /// <summary>
 /// Performs the playback of actions in this module.
 /// </summary>
 /// <remarks>You should not call this method directly, instead pass the module
 /// instance to the <see cref="TestModuleRunner.Run(ITestModule)"/> method
 /// that will in turn invoke this method.</remarks>
 void ITestModule.Run()
 {
     Preconditions.Init();
     Helper.WaitTillPageIsLoaded();
     PrivatePipelineDataObj.OpeningPrivatePipelineScreen();
     Helper.WaitTillPageIsLoaded();
     Helper.WaitForTimeInMilliSeconds(3000);
     PrivatePipelineDataObj.LandingPrivatePipelineScreen_Validation();
     PrivatePipelineDataObj.EnterSearchTextinAutoPrivatePipeline(PipelineStringcnq, PipelineStringcces);
     Helper.WaitTillPageIsLoaded();
     Helper.AutoPopulationVerification(PrivatePipelineDataObj.FirstsearchElementLi2);
 }
예제 #3
0
        /// <summary>
        /// Performs the playback of actions in this module.
        /// </summary>
        /// <remarks>You should not call this method directly, instead pass the module
        /// instance to the <see cref="TestModuleRunner.Run(ITestModule)"/> method
        /// that will in turn invoke this method.</remarks>
        void ITestModule.Run()
        {
            Preconditions.Init();
            Helper.WaitTillPageIsLoaded();
            PrivatePipelinePageObj.OpeningPrivatePipelineScreen();
            Helper.WaitTillPageIsLoaded();
            Helper.WaitForTimeInMilliSeconds(3000);
            PrivatePipelinePageObj.LandingPrivatePipelineScreen_Validation();
            Helper.WaitTillPageIsLoaded();
            PrivatePipelinePageObj.EnterSearchTextinPrivatePipeline(PrivatePipelineCNQNameverif, PrivatePipelineCCESNameverif);
            //		Helper.ScrollToVisibleElement(Pipelinedataobj.txtLicenseLine);
            string Pipeline_Id = Helper.GetValueTxtField(Pipelinedataobj.txtLicenseLine);

            string[] pipe      = Pipeline_Id.Split('-');
            string   license   = pipe[0];
            string   line      = pipe[1];
            string   segment   = pipe[2];
            string   client_id = Helper.GetClientId();

            Pipelinedataobj.MatchPipelineScreenData(client_id, license, line, segment);
        }