public static void selectFilterAction(String dropDownSelection, String selectionValue) {
   // TODO Auto-generated method stub
   // Go to drop down
   Select filterAxnDropDown =
       new Select(Driver.Instance.findElement(By.cssSelector(dropDownSelection)));
   filterAxnDropDown.selectByVisibleText(selectionValue); // select the value as given	
 }
 private static void filter() {
   // TODO Auto-generated method stub
   Driver.Instance.findElement(By.cssSelector("input#post-query-submit")).click();
 }