Exemplo n.º 1
0
        public static void NavigateToDLDashboard(TestContext testContext)
        {
            try
            {
                //Arrange
                string email       = Convert.ToString(testContext.DataRow["Email"]);
                string displayName = Convert.ToString(testContext.DataRow["DisplayName"]);


                ExgOrgDL orgDL = new ExgOrgDL();
                orgDL.SearchDL(email, displayName);
                ExgDLDashboard mailboxDashboard = orgDL.OpenDLDashboard();

                //Act
            }

            catch (Exception ex)
            {
                LogClass.AppendLogs(ex);
            }
        }
Exemplo n.º 2
0
 public BaseDistributionList()
 {
     pageDlDashboard = new ExgDLDashboard();
 }