public void verifyTextBoxComapnyName(OverviewTab overviewTab, UserProfile overviewData)
     throws Exception {
   String verifyComapnyNamePresentInTextBox = overviewTab.getTextBoxCompanyName();
   Assert.assertEquals(
       verifyComapnyNamePresentInTextBox, overviewData.getCompanyName(), "company name not found");
   AutomationLog.info("Expected Company Name found As per the Text Box");
 }