Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
rjoac09
Posts : 2
Join date : 2013-06-19

Selecting a option tag inside a select menu Empty 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:
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.
Back to top
Permissions in this forum:
You cannot reply to topics in this forum