我需要在输出中看到是否检查了给定的单选按钮。我应该使用什么样的定义?我用Google搜索了很多内容并没有找到解决方案(这可能就在我面前,因为有人可能会向我保证)。
答案 0 :(得分:4)
Mink提供了一个测试复选框的步骤:
the "form_checkbox" checkbox should be checked
但对于单选按钮,您需要编写自己的步骤。类似的东西:
/**
* @Then /^Radio button with id "([^"]*)" should be checked$/
*/
public function RadioButtonWithIdShouldBeChecked($sId)
{
$elementByCss = $this->getSession()->getPage()->find('css', 'input[type="radio"]:checked#'.$sId);
if (!$elementByCss) {
throw new Exception('Radio button with id ' . $sId.' is not checked');
}
}
您可以使用find()方法使用CSS选择器来定位元素。在这里,我们搜索一个已检查并具有给定ID的单选按钮。
答案 1 :(得分:2)
这个定义对我有用:
And the "radio-buton-name" field should contain "radio-button-value"
答案 2 :(得分:0)
您可以编写自己的步骤定义。例如,这就是我所做的:
/**
* @When /^I check the "([^"]*)" radio button$/
*/
public function iCheckTheRadioButton($labelText)
{
foreach ($this->getMainContext()->getSession()->getPage()->findAll('css', 'label') as $label) {
if ($labelText === $label->getText() && $label->has('css', 'input[type="radio"]')) {
$this->getMainContext()->fillField($label->find('css', 'input[type="radio"]')->getAttribute('name'), $label->find('css', 'input[type="radio"]')->getAttribute('value'));
return;
}
}
throw new \Exception('Radio button not found');
}
我知道这是一个老问题但我在搜索Stack Overflow和Google时并没有找到一个好的答案,所以我在这里发布我的解决方案。这可能会对某人有所帮助。
http://blog.richardknop.com/2013/04/select-a-radio-button-with-mink-behat/
答案 3 :(得分:0)
Behat / Mink扩展提供的方法非常有效:
@version Behat v3.0.14
@see \Behat\MinkExtension\Context\MinkContext
/**
* Checks checkbox with specified id|name|label|value.
*
* @When /^(?:|I )check "(?P<option>(?:[^"]|\\")*)"$/
*/
public function checkOption($option)
{
$option = $this->fixStepArgument($option);
$this->getSession()->getPage()->checkField($option);
}
刚刚测试过,它也适用于标签(如方法定义上方的phpdoc中所述)。
答案 4 :(得分:0)
我认为这值得一提,我添加了一个用于使用标签找到它的复选框。
/**
* @Then the checkbox for :checkboxLabel should be selected
*/
public function theCheckboxForShouldBeSelected($checkboxLabel)
{
$elementByCss = $this->getSession()->getPage()->find('css', 'label:contains("'.$checkboxLabel.'") input:checked');
if (!$elementByCss) {
throw new Exception('Checkbox with label ' . $checkboxLabel.' is not checked');
}
}