Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save longtailventures/3ea96f1b2230a9f7f9239d646e7777f0 to your computer and use it in GitHub Desktop.
Save longtailventures/3ea96f1b2230a9f7f9239d646e7777f0 to your computer and use it in GitHub Desktop.
Codeception: retrieve random option from select element
$options = $I->grabMultiple(^SELECT_ELEMENT^ option', 'value');
$I->selectOption('select', $options[array_rand($options)]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment