- rjoac09
- Posts : 2
Join date : 2013-06-19
Selecting a option tag inside a select menu
Wed Jun 19, 2013 4:03 pm
Hi, Im not sure if I should post this here or if it's more of a phpunit problem but here goes.
I got a select element that look like this, now I want to open it up and select the option with value t3, so I tried it like this:
Now this opens the menu but it does not select the option tag, I thought of using the select() instead of click() but select() is not supported yet, or atleast that's the message i get when I try to use the method. I run the following extension PHPUnit_Extensions_Selenium2TestCase.
Any input would be appreciated.
I got a select element that look like this, now I want to open it up and select the option with value t3, so I tried it like this:
- Code:
<select id="selectMenu">
<option value=""> </option>
<option value="t1">test 1</option>
<option value="t2">test 2</option>
<option value="t3">test 3</option>
<option value="t4">test 4</option>
<option value="t5">test 5</option>
<option value="t6">test 6</option>
</select>
$this->byId('selectMenu')->click();
sleep(1);
$type = $this->elements($this->using('css selector')->value(option[value="t3"]'));
$type[0]->click();
Now this opens the menu but it does not select the option tag, I thought of using the select() instead of click() but select() is not supported yet, or atleast that's the message i get when I try to use the method. I run the following extension PHPUnit_Extensions_Selenium2TestCase.
Any input would be appreciated.
- Select the “back” button of the Firefox browser to right click and Select the Option from the right click Menu in Selenium Web Driver - Java
- selenium to select an option from drop down menu
- how to select an option from select box of a form
- To select an element inside a folder in a Tree structure UI uisng selenium web driver calls
- Using Selenium Webdriver to test drop down menu (menu within menu)
Permissions in this forum:
You cannot reply to topics in this forum