<div id="feesnav">
<div style="float: right;">
<button id="b2" class="adjustuserfees_button active" onclick="cusers(this)"/>
</
Say I want to click on button b2 using python selenium. Tried all sorts of xpath definition and it retunrs can't find the locator error
The following code does not work:
self.sel.fire_event("//div[@id='feesnav']//button[@id='b2']", 'click')
or self.sel.mouse_down("//div[@id='feesnav']//button[@id='b2']")
Any suggestions?