@When("^I click employment human trafficking$")
 public void i_click_employment_human_trafficking() throws Throwable {
   PageFactory.getCLAWebEmploymentWhatDoYouNeedHelpWithPage(driver)
       .clickEmploymentHumanTrafficking();
 }
 @When("^I click employment discrimination$")
 public void i_click_employment_discrimination() throws Throwable {
   PageFactory.getCLAWebEmploymentWhatDoYouNeedHelpWithPage(driver)
       .clickEmploymentDiscrimination();
 }
 @When("^I click employment none of the above$")
 public void i_click_employment_none_of_the_above() throws Throwable {
   PageFactory.getCLAWebEmploymentWhatDoYouNeedHelpWithPage(driver)
       .clickEmploymentAnyOtherProblem();
 }
 @Then("^I am redirected to the employment what do you need help with page$")
 public void i_am_redirected_to_the_employment_what_do_you_need_help_with_page() throws Throwable {
   assertTrue(PageFactory.getCLAWebEmploymentWhatDoYouNeedHelpWithPage(driver).verifyOnPage());
 }