/// <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);
        }
コード例 #2
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);
        }