public void AddEmployee(string name, string email, string address, string phone)
        {
            Test.Log(Status.Info, "AddEmployee");
            eyes.CheckWindow("Add Employee Page");
            employeePage.AddEmployee(name, email, address, phone);

            Assert.IsTrue(employeePage.IsSuccessAlertPresent());
        }
 public void AddEmployee()
 {
     employeePage.AddEmployee("Juan", "*****@*****.**", "MTV", "598752022");
     Assert.IsTrue(employeePage.IsSuccessAlertPresent());
 }