You are here

public function FeatureContext::iSelectFromCollectionDropdown in Commerce Kickstart 7.2

@When I select :arg1 from collection dropdown

File

tests/behat/features/bootstrap/FeatureContext.php, line 243

Class

FeatureContext
Features context.

Code

public function iSelectFromCollectionDropdown($arg1) {
  $this
    ->getSession()
    ->wait(5000, 'jQuery("#selectnav3").length > 0');
  $this
    ->getSession()
    ->getPage()
    ->selectFieldOption("selectnav3", $arg1);
}