public void verifyEAddressLabelOfMerchantContactUnderContact() { string[] username = null; string[] password = null; var oXMLData = new XMLParse(); oXMLData.LoadXML("../../Config/ApplicationSettings.xml"); username = oXMLData.getData("settings/Credentials", "username_office"); password = oXMLData.getData("settings/Credentials", "password"); // Initializing the objects var executionLog = new ExecutionLog(); var loginHelper = new LoginHelper(GetWebDriver()); var office_ClientsHelper = new Office_ClientsHelper(GetWebDriver()); var office_ContactsHelper = new Office_ContactsHelper(GetWebDriver()); var DBA = "ClientDBA" + RandomNumber(111, 999999); var contactname = "Contact" + DBA; // Variable random String JIRA = ""; String Status = "Pass"; try { executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Login with valid username and password"); Login(username[0], password[0]); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Verify Page title"); VerifyTitle("Dashboard"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Redirect at Create merchant page"); VisitOffice("clients/create"); office_ClientsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Enter DBA name"); office_ClientsHelper.TypeText("ClientDBAName", DBA); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Enter First and Last name"); office_ClientsHelper.TypeText("FirstName", contactname); office_ClientsHelper.TypeText("LastName", "Contact"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Select the client status"); office_ClientsHelper.SelectByText("Status", "New"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "select the responsibity"); office_ClientsHelper.SelectByText("Responsibility", "Howard Tang"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Click on save btn"); office_ClientsHelper.ClickElement("Save"); office_ClientsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Go to Contacts tab"); office_ClientsHelper.ClickElement("ContactDetails"); office_ClientsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Select eAddress Type >> Email"); office_ClientsHelper.SelectByText("Contact1eAddressType1", "E-Mail"); office_ClientsHelper.WaitForWorkAround(1000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Select eAddress Label >> Business"); office_ClientsHelper.SelectByText("Contact1eAddressLabel1", "Business"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Enter eAddress"); office_ClientsHelper.TypeText("Contact1eAddress1", "*****@*****.**"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Click on Save button"); office_ClientsHelper.ClickElement("ContactSave"); office_ClientsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Redirect at All Contacts page"); VisitOffice("contacts"); office_ContactsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Search for contact by name"); office_ContactsHelper.TypeText("SearchName", contactname); office_ContactsHelper.WaitForWorkAround(2000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Search for contact by company name"); office_ContactsHelper.TypeText("SearchCompanyName", DBA); office_ContactsHelper.WaitForWorkAround(2000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Edit contact"); office_ContactsHelper.ClickElement("FirstEditIcon"); office_ContactsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Verify eAddress Label"); office_ContactsHelper.verifyselectedOptn("EaddressLabel", "Business"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Redirect at All merchants page"); VisitOffice("clients"); office_ClientsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Search the company Name"); office_ClientsHelper.TypeText("SearchClient", DBA); office_ClientsHelper.WaitForWorkAround(2000); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Click on check box"); office_ClientsHelper.ClickElement("ClickOnCheckBox"); executionLog.Log("VerifyEAddressLabelOfMerchantContactUnderContact", "Delete the client"); office_ClientsHelper.ClickJS("DeleteClient"); office_ClientsHelper.AcceptAlert(); office_ClientsHelper.WaitForWorkAround(3000); } catch (Exception e) { executionLog.Log("Error", e.StackTrace); Status = "Fail"; String counter = executionLog.readLastLine("counter"); String Description = executionLog.GetAllTextFile("VerifyEAddressLabelOfMerchantContactUnderContact"); String Error = executionLog.GetAllTextFile("Error"); Console.WriteLine(Error); if (counter == "") { counter = "0"; } bool result = loginHelper.CheckExstingIssue("Verify EAddress Label Of Merchant Contact Under Contact"); if (!result) { if (Int16.Parse(counter) < 9) { executionLog.Count("counter", (Int16.Parse(counter) + 1).ToString()); loginHelper.CreateIssue("Verify EAddress Label Of Merchant Contact Under Contact", "Bug", "Medium", "Office Merchant page", "QA", "Log in as: " + username[0] + " / " + password[0] + "\n\nSteps:\n" + Description + "\n\n\nError Description:\n" + Error); string id = loginHelper.getIssueID("Verify EAddress Label Of Merchant Contact Under Contact"); TakeScreenshot("VerifyEAddressLabelOfMerchantContactUnderContact"); string directoryName = loginHelper.GetnewDirectoryName(GetPath()); var location = directoryName + "\\VerifyEAddressLabelOfMerchantContactUnderContact.png"; loginHelper.AddAttachment(location, id); } } else { if (Int16.Parse(counter) < 9) { executionLog.Count("counter", (Int16.Parse(counter) + 1).ToString()); TakeScreenshot("VerifyEAddressLabelOfMerchantContactUnderContact"); string id = loginHelper.getIssueID("Verify EAddress Label Of Merchant Contact Under Contact"); string directoryName = loginHelper.GetnewDirectoryName(GetPath()); var location = directoryName + "\\VerifyEAddressLabelOfMerchantContactUnderContact.png"; loginHelper.AddAttachment(location, id); loginHelper.AddComment(loginHelper.getIssueID("Verify EAddress Label Of Merchant Contact Under Contact"), "This issue is still occurring"); } } JIRA = loginHelper.getIssueID("Verify EAddress Label Of Merchant Contact Under Contact"); // executionLog.DeleteFile("Error"); throw; } finally { executionLog.DeleteFile("VerifyEAddressLabelOfMerchantContactUnderContact"); executionLog.WriteInExcel("Verify EAddress Label Of Merchant Contact Under Contact", Status, JIRA, "Office Merchants"); } }
public void verifyContactEAddressLabelPopulate() { string[] username = null; string[] password = null; XMLParse oXMLData = new XMLParse(); oXMLData.LoadXML("../../Config/ApplicationSettings.xml"); username = oXMLData.getData("settings/Credentials", "username_office"); password = oXMLData.getData("settings/Credentials", "password"); //Initializing the objects var executionLog = new ExecutionLog(); var loginHelper = new LoginHelper(GetWebDriver()); var office_ContactsHelper = new Office_ContactsHelper(GetWebDriver()); // Random Variable var File = GetPathToFile() + "contactsamples.csv"; String JIRA = ""; String Status = "Pass"; try { executionLog.Log("VerifyContactEAddressLabelPopulate", "Login with valid username and password"); Login(username[0], password[0]); Console.WriteLine("Logged in as: " + username[0] + " / " + password[0]); executionLog.Log("VerifyContactEAddressLabelPopulate", "Verify Page title"); VerifyTitle("Dashboard"); Console.WriteLine("Redirected at Dashboard screen."); executionLog.Log("VerifyContactEAddressLabelPopulate", "Redirect at import contacts page."); VisitOffice("contacts/create"); office_ContactsHelper.WaitForWorkAround(3000); executionLog.Log("VerifyContactEAddressLabelPopulate", "Select eAddress Type >> IM"); office_ContactsHelper.selectByText("EaddressType", "IM"); office_ContactsHelper.WaitForWorkAround(1000); executionLog.Log("VerifyContactEAddressLabelPopulate", "Verify selected eAddress Label"); office_ContactsHelper.verifyselectedOptn("EaddressLabel", "Google"); executionLog.Log("VerifyContactEAddressLabelPopulate", "Select eAddress Type >> Social Media"); office_ContactsHelper.selectByText("EaddressType", "Social Media"); office_ContactsHelper.WaitForWorkAround(1000); executionLog.Log("VerifyContactEAddressLabelPopulate", "Verify selected eAddress Label"); office_ContactsHelper.verifyselectedOptn("EaddressLabel", "Facebook"); executionLog.Log("VerifyContactEAddressLabelPopulate", "Select eAddress Type >> Web Links"); office_ContactsHelper.selectByText("EaddressType", "Web Links"); office_ContactsHelper.WaitForWorkAround(1000); executionLog.Log("VerifyContactEAddressLabelPopulate", "Verify selected eAddress Label"); office_ContactsHelper.verifyselectedOptn("EaddressLabel", "Weblink"); } catch (Exception e) { executionLog.Log("Error", e.StackTrace); Status = "Fail"; String counter = executionLog.readLastLine("counter"); String Description = executionLog.GetAllTextFile("VerifyContactEAddressLabelPopulate"); String Error = executionLog.GetAllTextFile("Error"); if (counter == "") { counter = "0"; } bool result = loginHelper.CheckExstingIssue("Verify Contact EAddress Label Populate"); if (!result) { if (Int16.Parse(counter) < 9) { executionLog.Count("counter", (Int16.Parse(counter) + 1).ToString()); loginHelper.CreateIssue("Verify Contact EAddress Label Populate", "Bug", "Medium", "Contacts page", "QA", "Log in as: " + username[0] + " / " + password[0] + "\n\nSteps:\n" + Description + "\n\n\nError Description:\n" + Error); string id = loginHelper.getIssueID("Verify Contact EAddress Label Populate"); TakeScreenshot("VerifyContactEAddressLabelPopulate"); string directoryName = loginHelper.GetnewDirectoryName(GetPath()); var location = directoryName + "\\VerifyContactEAddressLabelPopulate.png"; loginHelper.AddAttachment(location, id); } } else { if (Int16.Parse(counter) < 9) { executionLog.Count("counter", (Int16.Parse(counter) + 1).ToString()); TakeScreenshot("VerifyContactEAddressLabelPopulate"); string id = loginHelper.getIssueID("Verify Contact EAddress Label Populate"); string directoryName = loginHelper.GetnewDirectoryName(GetPath()); var location = directoryName + "\\VerifyContactEAddressLabelPopulate.png"; loginHelper.AddAttachment(location, id); loginHelper.AddComment(loginHelper.getIssueID("Verify Contact EAddress Label Populate"), "This issue is still occurring"); } } JIRA = loginHelper.getIssueID("Verify Contact EAddress Label Populate"); // executionLog.DeleteFile("Error"); throw; } finally { executionLog.DeleteFile("VerifyContactEAddressLabelPopulate"); executionLog.WriteInExcel("Verify Contact EAddress Label Populate", Status, JIRA, "Contact Management"); } }