Skip to content

Instantly share code, notes, and snippets.

@exu
Created June 7, 2013 09:01
Show Gist options
  • Save exu/5727996 to your computer and use it in GitHub Desktop.
Save exu/5727996 to your computer and use it in GitHub Desktop.
/**
* @When /^I check "([^"]*)" if not checked yet$/
*/
public function iCheckIfNotCheckedYet($id)
{
$Page = $this->getSession()->getPage();
$isChecked = $Page->find('css', 'input[type="checkbox"]:checked#' . $id);
if (!$isChecked) {
$Page->find('css', '#' . $id)->click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment