Trying to scrape an ecommerce website. It has rows of buttons/images which keeps loading more products as you scroll. On which element or element-id should the code perform Click() so as to retrieve product name, price, description ....attributes
Getting an error on
btn = driver.find_element_by_xpath("//*[@class='productTitle']")
AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'
Can anyone please tell me with an example? Thank you so much
Thanks,
Sunil