Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My hidden button that activates a drop-down menu for selections of different options. The button is hidden until clicked or MouseOver to the project object ("project-active"). I use webdriver with C# to automate. The DEV code for the project and the button (class="btn btn-mini dropdown-toggle") is (the button has image-icon and caret-arrow for dropdown) :

<div class="project active">
<div class="header">
<input class="project-id" type="hidden" value="1031">
<span class="badge badge-info">3 sites</span>
<a class="description" data-original-title="New project created by Aluchia" rel="tooltip" href="#">
<div class="modified">Modified: 2012-12-12 18:08:07Z</div>
<div class="btn-group">
<a class="btn btn-mini dropdown-toggle" href="#" data-target="#projectConfigMenu_1031">
<i class="icon-cog"></i>
<span class="caret"></span>
</a>
<ul id="projectConfigMenu_1031" class="dropdown-menu" style="top: 182.583px; left: 194.917px; display: none;">
<li>
<li>
<li class="divider"></li>
<li>
<li>
<li>
<li>
</ul>
</div>

The ere is also a code for a button, when it gets active and visible :

<ul id="projectConfigMenu_1031" class="dropdown-menu" style="top: 182.583px; left: 194.917px; display: block;">
<li>
<a href="#infoProject_1031" data-toggle="modal">
<i class="icon-info-sign"></i>
Info
</a>
</li>
<li>

Please help me write a proper code to select the button and any option under it ('Info', etc.)

share|improve this question
Actions builder = new Actions(driver); var active_project = driver.FindElement(By.XPath("//span[contains(text(), 'Dry')]")); builder.MoveToElement(active_project).Build().Perform(); that didn't work for me. ;-( – Aluchia Jan 8 at 15:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.