public void Counterparty_EditCPNonGenericFields_GlobalTenant() { storeResults = true; Test.SetTestName(TestContext); Test.LoginAsSystemUser(); PO_CounterParties_PopUp counterParties = PO_Dashboard.GoToCounterPartiesPopUp(); counterParties.CreateNewCounterParty().Create(); counterParties.VerifyCounterPartyIsCreated(); counterParties.ClosePopUp(); PO_Dashboard.LogOff(); PO_LoginPage login = new PO_LoginPage(); PO_Dashboard dash = login.LoginWithVladimirChernev(); PO_StaticEntitiesAwaitingApproval approvalQueue = dash.GoToStaticEntitiesAwaitingApproval(); approvalQueue.ApproveStaticEntitie(Test.extRef); PO_Dashboard.LogOff(); login.LoginWithSystemUser(); PO_Dashboard.GoToCounterPartiesPopUp(); counterParties.EditCounterParty() .SetCounterPartyInputField(CounterPartySelectFields.Counterparty_DelegatedValuation, "Yes") .Save(); counterParties.VerifyCounterPartyIsCreated(); counterParties.ClosePopUp(); PO_Dashboard.LogOff(); login.LoginWithVladimirChernev(); dash.GoToStaticEntitiesAwaitingApproval(); approvalQueue.ApproveStaticEntitie(Test.extRef); PO_Dashboard.LogOff(); Test.result = "Passed"; }