I have this:
<div class="dhx_toolbar_btn def" title="">
<div>Interface</div>
</div>
//div[@class='dhx_toolbar_btn def' and contains(., 'Interface')]
css=.dhx_toolbar_btn def:contains('Interface')
<td class="td_btn_txt">
<div class="btn_sel_text">Billing Interface</div>
</td>
//div[5]/div/div[5]/div[9]
//*[text()='Interface']
//*[normalize-space(text())='Interface']
//*[contains(text(), 'Interface')]
Okay, so not exactly the way I wanted it to go, or to make it work but it kinda does:
<tr>
<td>waitForElementPresent</td>
<td>//div[@class='dhx_toolbar_btn def' and contains(., 'Interface')]</td>
<td></td>
</tr>
<tr>
<td>mouseDown</td>
<td>//*[text()='Interface']</td>
<td></td>
</tr>
<tr>
<td>mouseOver</td>
<td>//*[normalize-space(text())='Interface']</td>
<td></td>
</tr>
<tr>
<td>mouseDown</td>
<td>//*[text()='Interface']</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>//div[5]/div/div[5]/div[9]</td>
<td></td>
</tr>
<tr>
<td>mouseOut</td>
<td>//div[5]/div/div[5]/div[9]</td>
<td></td>
</tr>
Although I would prefer an easier & simpler method.