While trying out web scraping at https://store.obeygiant.com/collections/prints/products/obey-ripped-signed-offset-poster
, made an attempt to click a button by id and even by name:
browser.find_by_id('AddToCartText').click()
browser.find_by_name('add').click()
But got the following error for either attempt:
selenium.common.exceptions.WebDriverException: Message: unknown error: Element is not clickable at point (657, 724)
(Session info: chrome=61.0.3163.100)
(Driver info: chromedriver=2.29.461585 (0be2cd95f834e9ee7c46bcc7cf405b483f5ae83b),platform=Mac OS X 10.11.6 x86_64)
Tested it out the same way and other sites actually worked.
What could be the issue and what would be a good approach to it?
Thank you in advance and will be sure to vote up and accept answer.