Selects an option in a select tag or in radio button group.
php
selectOption('form select[name=account]', 'Premium');
$I->selectOption('form input[name=payment]', 'Monthly');
$I->selectOption('//form/select[@name=account]', 'Monthly');
?>
Provide an array for the second argument to select multiple options:
php
selectOption('Which OS do you use?', array('Windows','Linux'));
?>
public selectOption ( $select, $option ) | ||
$select | ||
$option |