public void MTEMIRExtRefOut_SearchingFullName()
 {
     storeResults = true;
     searchTerm = Test.extRef;
     refOut = PO_Dashboard.GoToExternalRefOuts();
     refOut.SearchForExtRefOut(searchTerm);
     Util.CheckIfTextPresented(Test.extRef);
     Test.result = "Passed";
 }
        public void SetUp()
        {
            Test.SetTestName(TestContext);
            Test.InitiateBrowser();
            PO_LoginPage login = new PO_LoginPage();
            login.LoginWithTenantA_EMIRUser();

            Test.SetTestName(TestContext);
            Test.LoginAsRegularUser();
            refOut = PO_Dashboard.GoToExternalRefOuts();
            PO_ExtRefOut_CreateRefOut createExtRefOut = refOut.ClickCreate();
            createExtRefOut.CreateExtRef("Country", "DTCC");
            refOut.VerifyExtRefOutIsCreated();
            refOut.ClosePopUp();
            PO_UserAccountButton.LogOff();
            login.LoginWithTenantB_EMIRUser01();
        }
 public void SetUp()
 {
     Test.SetTestName(TestContext);
     Test.LoginAsRegularUser();
     refOut = PO_Dashboard.GoToExternalRefOuts();
     PO_ExtRefOut_CreateRefOut createExtRefOut = refOut.ClickCreate();
     createExtRefOut.CreateExtRef("Country", "DTCC");
     refOut.VerifyExtRefOutIsCreated();
 }