/**
  * @param string $source
  * @param string $target
  *
  * @When /^I put the "([^"]*)" column before the "([^"]*)" one$/
  */
 public function iPutTheColumnBeforeTheOne($source, $target)
 {
     $this->datagrid->openColumnsPopin();
     $this->wait();
     $this->datagrid->moveColumn($source, $target);
     $this->wait();
 }