i am new in Selenium trying to click() in selenium Webdriver but it's not work
i use Firebug and Firepath in Firefox to help me find xpath
i enter this xpath into firepath Firefox, it's highlight all element i want, but not click()
this is my code
browser.find_elements_by_xpath('//td[@zoneid="A1"]/div').click()
this is page source
<td class="seatSample">
<td id=“C_1" class="seatItem" title=“available” price=“35.0" zoneid="A1" seatname=“C1" style="background-color:#33b093 ;">
<div style=“width:20px;">1</div>
</td>
<td id=“C_2" class="seatItem" title="available" price=“35.0" zoneid="A1" seatname=“C2" style="background-color:#33b093 ;">
<div style=“width:20px;">2</div>
</td>
Any help is appreciated.