public EA_POM Create_Appoinment()
        {
            Web_Driver.ngWebDriver.WaitForAngular();
            Web_Driver.driver.Navigate().Refresh();


            Apponitment_Tab.ElementAt(0).Click();
            //Clicking on Create Appoinment Button
            Web_Driver.ngWebDriver.WaitForAngular();
            Pre_Id = Previous_ID_txt.ElementAt(0).Text;
            int.TryParse(Pre_Id, out Previous_ID);
            Web_Driver.ngWebDriver.WaitForAngular();
            Created_Appoinment_Button.Click();
            //getting Appoinment page Url
            Appoinment_Page_Url = Web_Driver.driver.Url;
            //Clicking on CheckBox
            Check_Boxe.Click();
            //Checking Fields are Enabled after cliking on Checkbox

            for (int i = 0; i < Enable_Input_Boxes.Count; i++)
            {
                if (Enable_Input_Boxes.ElementAt(i).Enabled)
                {
                    Asserts.Enable_Fields(true);
                }
                if (Enable_Input_Boxes.ElementAt(i).Enabled == false)
                {
                    Asserts.Enable_Fields(false);
                }
            }
            //passing data into Fields
            // pass data into representative Form
            Representative_First_Name.SendKeys("Usama");
            Representative_First_Name.GetAttribute("value");

            Representative_Last_Name.SendKeys("Sohail");
            Representative_Last_Name.GetAttribute("value");
            Representative_Relationship.SendKeys("Cousin");
            Representative_Relationship.GetAttribute("value");
            RepresentativePhoneNumber.SendKeys("(234) 678-9874");

            string repres_str = RepresentativePhoneNumber.GetAttribute("value");

            //Passing Agent Info
            AgentFirstName.Clear();
            AgentFirstName.SendKeys("Ahad");
            AgentFirstName.GetAttribute("value");
            AgentLastName.Clear();
            AgentLastName.SendKeys("Ahmed");
            AgentLastName.GetAttribute("value");

            AgentPhone.Clear();

            AgentPhone.SendKeys("2346789874");
            string str_AgentPhone = AgentPhone.GetAttribute("value");

            str_AgentPhone = str_AgentPhone.Substring(str_AgentPhone.IndexOf("("));
            str_AgentPhone = str_AgentPhone.Replace("(", "");
            str_AgentPhone = str_AgentPhone.Replace(")", "");
            str_AgentPhone = str_AgentPhone.Replace("-", "");

            //  Console.WriteLine(str_AgentPhone);


            //passing data into Benificiary
            Beneficiary_First_Name.SendKeys("Mujeed");
            Beneficiary_First_Name.GetAttribute("value");
            LastName.SendKeys("Khan");
            LastName.GetAttribute("value");
            EmailAddress.SendKeys("*****@*****.**");
            HomePhone.SendKeys("2346789874");
            HomePhone.GetAttribute("value");
            PermanentAddress.SendKeys("72 house 342");
            //Checking radio buttons
            for (int i = 0; i < Radio_Btn_list.Count; i++)
            {
                Radio_Btn_list.ElementAt(i).Click();
                Console.WriteLine(Radio_Btn_list.ElementAt(i).Selected);
            }
            //Passing Data into other
            InitialOtherContactMethod.SendKeys("Other");
            InitialOtherContactMethod.SendKeys("value");
            //passing data into plan
            PlansRepresented.SendKeys("Plan A");
            PlansRepresented.GetAttribute("value");
            //passing dates
            AppointmentOn.SendKeys("12/10/2020");
            AppointmentOn.GetAttribute("value");
            AppointmentCompletedOn.SendKeys("13/10/2020");
            AppointmentCompletedOn.GetAttribute("value");
            //passing data into Appointment Id
            AgnetNPNIDNumber.SendKeys("Md-4554");
            AgnetNPNIDNumber.GetAttribute("value");

            //passing data into plan
            meetingDetails.SendKeys("Plan D");
            meetingDetails.GetAttribute("value");
            //  Medicare Number
            MediCareNumber.SendKeys("Md-6783");
            MediCareNumber.GetAttribute("value");

            //  Asserts.All_Fields_Data_Filled if (Representative_First_Name.contains("[a-zA-Z0-9]+") && RepresentativePhoneNumber.contains("[0-9]+") == true);
            //  Asserts.All_Fields_Data_Filled(false);

            //Assertion On Data filled or Not


            if (Representative_First_Name.GetAttribute("value") == "Usama" && Representative_Last_Name.GetAttribute("value") == "Sohail" && Representative_Relationship.GetAttribute("value") == "Cousin" && AgentFirstName.GetAttribute("value") == "Ahad" && AgentLastName.GetAttribute("value") == "Ahmed" && str_AgentPhone == "234 6789874" && Beneficiary_First_Name.GetAttribute("value") == "Mujeed" && LastName.GetAttribute("value") == "Khan" && repres_str == "(234) 678-9874" && PermanentAddress.GetAttribute("value") == "72 house 342" && EmailAddress.GetAttribute("value") == "*****@*****.**" && PlansRepresented.GetAttribute("value") == "Plan A" && AppointmentOn.GetAttribute("value") == "10/12/2020" && AppointmentCompletedOn.GetAttribute("value") == "10/13/2020" && AgnetNPNIDNumber.GetAttribute("value") == "Md-4554" && MediCareNumber.GetAttribute("value") == "Md-6783")
            {
                Asserts.All_Fields_Data_Filled(true);
            }
            else
            {
                Asserts.All_Fields_Data_Filled(false);
            }
            //Assertion on Date


            Date_of_Appoinment = AppointmentOn.GetAttribute("value");
            Date_of_Appoinment = Date_of_Appoinment.Substring(Date_of_Appoinment.IndexOf("/"));
            Date_of_Appoinment = Date_of_Appoinment.Replace("/", "");
            // Complete Date
            Date_of_Appoinment_Complete = AppointmentCompletedOn.GetAttribute("value");

            Date_of_Appoinment_Complete = Date_of_Appoinment_Complete.Substring(Date_of_Appoinment_Complete.IndexOf("/"));
            Date_of_Appoinment_Complete = Date_of_Appoinment_Complete.Replace("/", "");



            int.TryParse(Date_of_Appoinment_Complete, out int Complete_Date);
            int.TryParse(Date_of_Appoinment, out int Start_Date);
            Console.WriteLine(Complete_Date);
            Console.WriteLine(Start_Date);
            if (Complete_Date > Start_Date)
            {
                Asserts.Date(true);
            }
            else
            {
                Asserts.Date(false);
            }
            //Clicking on E Sign button
            Genrete_Appoinment.ElementAt(0).Click();
            Genrete_Appoinment_Yes_Btn.ElementAt(1).Click();
            Web_Driver.ngWebDriver.WaitForAngular();
            Genrete_Appoinment_Ok_Btn.ElementAt(1).Click();
            Web_Driver.ngWebDriver.WaitForAngular();
            Web_Driver.driver.Navigate().Refresh();
            Home_Page_Url = Web_Driver.driver.Url;
            Console.WriteLine(Home_Page_Url);
            Console.WriteLine(Appoinment_Page_Url);
            Web_Driver.ngWebDriver.WaitForAngular();
            Up_Id = Created_ID_txt.ElementAt(0).Text;
            int.TryParse(Up_Id, out Updated_ID);
            Asserts.ID_Compare(Updated_ID, Previous_ID);
            Console.WriteLine(Previous_ID);
            Console.WriteLine(Updated_ID);
            return(new EA_POM());
        }
Пример #2
0
        public EA_POM Create_Enrolment()
        {
            Thread.Sleep(3000);
            //   string[] vals = new string[] { "H7607-002-001", "H7607-002-002", "H7607-002-003", "H7607-003-001", "H7607-003-002", "H7607-003-003" };
            En_Tab_Click.Click();
            Thread.Sleep(3000);
            Pre_Id = Previous_ID_txt.ElementAt(0).Text;
            int.TryParse(Pre_Id, out Previous_ID);
            Create_En_btn.Click();
            Url_Creat_En_page = Web_Driver.driver.Url;
            Asserts.Url_Create_En(Url_Creat_En_page, Url_En_page);
            Console.WriteLine(Url_Creat_En_page);
            Console.WriteLine(Url_En_page);
            //Plan radio button verifying
            for (int i = 0; i < Plan_Radio_btn.Count; i++)
            {
                try
                {
                    Plan_Radio_btn.ElementAt(i).Click();
                    radio = Plan_Radio_btn.ElementAt(i).Selected;
                    if (radio = Plan_Radio_btn.ElementAt(i).Selected)
                    {
                        //  Console.WriteLine(Plan_Radio_btn.ElementAt(i).Selected + "Button  clicked");
                        Asserts.Assert_Radiobtn(radio);
                    }
                }
                catch
                {
                    Asserts.Assert_Radiobtn(false);
                }
            }
            // List<string> list = new List<string>();
            IList <IWebElement> rows = Web_Driver.driver.FindElements(By.XPath("//table[@class='table-responsive table-bordered']//tbody//tr"));

            for (int i = 3; i < 6; i++)
            {
                // Console.WriteLine(rows[i].Text);
                if (rows[i].Text == "H7607-002-001 Los Angeles" || rows[i].Text == "H7607-002-002 Orange" || rows[i].Text == "H7607-002-003 San Diego")
                {
                    // Console.WriteLine(rows[i].Text);
                    bool txtverified = true;
                    Asserts.Assert_Plans(txtverified);
                }
                else
                {
                    bool txtverified = false;
                    Asserts.Assert_Plans(txtverified);
                }
                for (int j = 7; j < 10; j++)
                {
                    //Console.WriteLine(rows[i].Text);
                    if (rows[j].Text == "H7607-003-001 Los Angeles" || rows[j].Text == "H7607-003-002 Orange" || rows[j].Text == "H7607-003-003 San Diego")
                    {
                        //  Console.WriteLine(rows[j].Text);
                        bool txtverified = true;
                        Asserts.Assert_Plans1(txtverified);
                    }
                    else
                    {
                        bool txtverified = false;
                        Asserts.Assert_Plans1(txtverified);
                    }
                }
            }



            //First name verified
            Name.SendKeys("Usama");


            //Last name verified
            LName.SendKeys("Sohail");


            //Middle name verified

            MName.SendKeys("Puma");



            //Required Date Of Birth verified
            Dob.SendKeys("05/07/2020");

            //Sex Male/FeeMale radio btns
            for (int i = 0; i < Radio_M_F.Count; i++)
            {
                try
                {
                    Radio_M_F.ElementAt(i).Click();
                    radio_1 = Radio_M_F.ElementAt(i).Selected;
                    if (radio_1 = Radio_M_F.ElementAt(i).Selected)
                    {
                        Console.WriteLine(Radio_M_F.ElementAt(i).Selected + "Button is  clicked");
                        Asserts.Assert_Radiobtn(radio_1);
                    }
                }
                catch
                {
                    Asserts.Assert_Radiobtn(false);
                }
            }
            /// Entring Home Phone
            Hphone.SendKeys("5672348791");
            //Entering Permanent Address
            P_Address.SendKeys("72 Health center");
            //Entering Permanent City
            P_City.SendKeys("Lahore");
            //Entering Permanent County
            P_County.SendKeys("Pak");
            //Entering Permanent State
            P_State.SendKeys("Pakistan");
            //Entering Permanent Zip
            P_Zip.SendKeys("315550");
            //Mailing Adress CheckBox
            Mailing_Adress.Click();
            checkbox = Mailing_Adress.Selected;
            if (checkbox == true)
            {
                Asserts.Mailing_Checkbox(true);
            }
            else
            {
                Asserts.Mailing_Checkbox(false);
            }

            //Entering data into street address input box

            Street_Adress.SendKeys("72 Health center street No 10");
            //Entering data into Mailing City

            Mailing_City.SendKeys("Faisalabad");
            //Entering data into Mailing State

            Mailing_State.SendKeys("England");
            //Entering data into Mailing Zipcode

            Mailing_Zip.SendKeys("4532678");
            //Entering data into MdNumber

            MD_Number.SendKeys("Md-9999");
            //Entering data into AttorneName
            AttorneyName.SendKeys("Gul");
            //Entering data into AttorneAdree
            AttorneyAddress.SendKeys("123 street near new clonoy 1");
            //Entering data into Attorny Phone
            AttorneyPhone.SendKeys("2324445787");
            //Entering data into Attorny Phone
            Attorneyrelation.SendKeys("Cousin");
            for (int i = 0; i < Section_2_Checkbox2.Count; i++)
            {
                try
                {
                    Section_2_Checkbox2.ElementAt(i).Click();
                    Section_2_checked1 = Section_2_Checkbox2.ElementAt(i).Selected;
                    if (Section_2_checked1 = Section_2_Checkbox2.ElementAt(i).Selected)
                    {
                        Console.WriteLine(Section_2_Checkbox2.ElementAt(i).Selected + "Section 2 Button not clicked");
                        Asserts.Section2_Checkbox(Section_2_checked1);
                    }
                }
                catch
                {
                    Asserts.Section2_Checkbox(false);
                }

                {
                }
            }
            for (int i = 0; i < Section_2_Checkbox.Count; i++)
            {
                try
                {
                    Section_2_Checkbox.ElementAt(i).Click();
                    Section_2_checked = Section_2_Checkbox.ElementAt(i).Selected;
                    if (Section_2_checked = Section_2_Checkbox.ElementAt(i).Selected)
                    {
                        Console.WriteLine(Section_2_Checkbox.ElementAt(i).Selected + "Button not clicked");
                        Asserts.Assert_Radiobtn(Section_2_checked);
                    }
                }
                catch
                {
                    Asserts.Assert_Radiobtn(false);
                }

                {
                }
            }
            //Entring email address
            Email_Adress.SendKeys("*****@*****.**");
            Premium_check.Click();
            premium = Premium_check.Selected;
            if (premium == true)
            {
                Asserts.Section2_Checkbox(true);
            }
            else
            {
                Asserts.Section2_Checkbox(false);
            }
            for (int i = 0; i < Attestation.Count; i++)
            {
                try
                {
                    Attestation.ElementAt(i).Click();
                    radio_2 = Attestation.ElementAt(i).Selected;
                    if (radio_2 == true)
                    {
                        Console.WriteLine(Attestation.ElementAt(i).Selected + "Attestation Radio Button  clicked");
                        Asserts.Assert_Radiobtn(radio_2);
                    }
                }
                catch
                {
                    Asserts.Assert_Radiobtn(false);
                }

                Genrete_Enrolment.ElementAt(1).Click();
                Web_Driver.ngWebDriver.WaitForAngular();
                Genrete_Enrolment_Yes_Btn.ElementAt(1).Click();
                Web_Driver.ngWebDriver.WaitForAngular();
                Genrete_Appoinment_Ok_Btn.ElementAt(1).Click();
                Web_Driver.ngWebDriver.WaitForAngular();
                Web_Driver.driver.Navigate().Refresh();
                Web_Driver.ngWebDriver.WaitForAngular();
                Up_Id = Created_ID_txt.ElementAt(0).Text;
                int.TryParse(Up_Id, out Updated_ID);
                Asserts.ID_Compare(Updated_ID, Previous_ID);
                Console.WriteLine(Previous_ID);
                Console.WriteLine(Updated_ID);
            }
            return(new EA_POM());
        }