Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $select = $this->getSession()->getPage()->find('css', '#my-select-element');
  2. $options = $select->findAll('css', 'option');
  3. $secondOption = $options[1];
  4.  
  5. $this->getSession()->getDriver()->selectOption(
  6. $select->getXpath(),
  7. $secondOption->getValue()
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement