Here is the HTML:
<button id="getCoupon" class="getCoupon" onclick="IWant()" style="" data-i18n="view_prod_get_coupon">Get Your Coupon</button>
I have been trying these ways of finding the button:
1. driver.find_element_by_id('getCoupon').click()
2. driver.find_element_by_xpath('//*[@id="getCoupon"]').click()
3. driver.find_element_by_class_name('getCoupon').click()
None of them seemed to work. Any ideas?