/**
  * @param string $filterName
  * @param string $action
  * @param string $value
  *
  * @Then /^I filter by "([^"]*)" with value "(>|>=|=|<|<=) (\d+[.]?\d*)"$/
  */
 public function iFilterByNumber($filterName, $action, $value)
 {
     $this->datagrid->filterPerNumber($filterName, $action, $value);
     $this->wait();
 }