Created
April 4, 2011 18:47
-
-
Save ThePixelDeveloper/902162 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* This file is part of the Behat\Mink. | |
* (c) Konstantin Kudryashov <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ | |
use Behat\Mink\Exception\ElementNotFoundException; | |
$steps->Given('/^(?:|I )am on (?P<page>.+)$/', function($world, $page) { | |
$world->getSession()->visit($world->getPathTo($page)); | |
}); | |
$steps->When('/^(?:|I )go to (?P<page>.+)$/', function($world, $page) { | |
$world->getSession()->visit($world->getPathTo($page)); | |
}); | |
$steps->When('/^(?:|I )press "(?P<button>[^"]*)"$/', function($world, $button) { | |
$world->getSession()->getPage()->clickButton($button); | |
}); | |
$steps->When('/^(?:|I )follow "(?P<link>[^"]*)"$/', function($world, $link) { | |
$world->getSession()->getPage()->clickLink($link); | |
}); | |
$steps->When('/^(?:|I )fill in "(?P<field>[^"]*)" with "(?P<value>[^"]*)"$/', function($world, $field, $value) { | |
$world->getSession()->getPage()->fillField($field, $value); | |
}); | |
$steps->When('/^(?:|I )fill in "(?P<value>[^"]*)" for "(?P<field>[^"]*)"$/', function($world, $field, $value) { | |
$world->getSession()->getPage()->fillField($field, $value); | |
}); | |
$steps->When('/^(?:|I )fill in the following:$/', function($world, $fieldsTable) { | |
$page = $world->getSession()->getPage(); | |
foreach ($fieldsTable->getRowsHash() as $field => $value) { | |
$page->fillField($field, $value); | |
} | |
}); | |
$steps->When('/^(?:|I )select "(?P<option>[^"]*)" from "(?P<select>[^"]*)"$/', function($world, $select, $option) { | |
$world->getSession()->getPage()->selectFieldOption($select, $option); | |
}); | |
$steps->When('/^(?:|I )check "(?P<option>[^"]*)"$/', function($world, $option) { | |
$world->getSession()->getPage()->checkField($option); | |
}); | |
$steps->When('/^(?:|I )uncheck "(?P<option>[^"]*)"$/', function($world, $option) { | |
$world->getSession()->getPage()->uncheckField($option); | |
}); | |
$steps->When('/^(?:|I )attach the file "(?P<path>[^"]*)" to "(?P<field>[^"]*)"$/', function($world, $field, $path) { | |
$world->getSession()->getPage()->attachFileToField($field, $path); | |
}); | |
$steps->Then('/^(?:|I )should see "(?P<text>[^"]*)"$/', function($world, $text) { | |
assertTrue($world->getSession()->getPage()->hasContent($text)); | |
}); | |
$steps->Then('/^(?:|I )should not see "(?P<text>[^"]*)"$/', function($world, $text) { | |
assertFalse($world->getSession()->getPage()->hasContent($text)); | |
}); | |
$steps->Then('/^the "(?P<field>[^"]*)" field should contain "(?P<value>[^"]*)"$/', function($world, $field, $value) { | |
$node = $world->getSession()->getPage()->findField($field); | |
if (null === $node) { | |
throw new ElementNotFoundException('field', $field); | |
} | |
assertContains($value, $node->getValue()); | |
}); | |
$steps->Then('/^the "(?P<field>[^"]*)" field should not contain "(?P<value>[^"]*)"$/', function($world, $field, $value) { | |
$node = $world->getSession()->getPage()->findField($field); | |
if (null === $field) { | |
throw new ElementNotFoundException('field', $field); | |
} | |
assertNotContains($value, $node->getValue()); | |
}); | |
$steps->Then('/^the "(?P<checkbox>[^"]*)" checkbox should be checked$/', function($world, $checkbox) { | |
$field = $world->getSession()->getPage()->findField($checkbox); | |
if (null === $field) { | |
throw new ElementNotFoundException('field', $checkbox); | |
} | |
assertTrue($field->isChecked()); | |
}); | |
$steps->Then('/^the "(?P<checkbox>[^"]*)" checkbox should not be checked$/', function($world, $checkbox) { | |
$field = $world->getSession()->getPage()->findField($checkbox); | |
if (null === $field) { | |
throw new ElementNotFoundException('field', $checkbox); | |
} | |
assertFalse($field->isChecked()); | |
}); | |
$steps->Then('/^(?:|I )should be on (?P<page>.+)$/', function($world, $page) { | |
assertEquals( | |
parse_url($world->getPathTo($page), PHP_URL_PATH), | |
parse_url($world->getSession()->getCurrentUrl(), PHP_URL_PATH) | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment