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.)