I am trying to scrape the following website : https://angel.co/companies
There is a "More" button at the bottom, which on click loads more records.
I need to click the button via selenium.
I tried the following:
python_button = driver.find_elements_by_class_name("more")
python_button.click()
However its not finding the appropriate button, i.e. my python_button
returns an empty list.
I tried the following:
python_button = driver.find_element_by_class_name("more")
And this gives the following error:
Message: no such element: Unable to locate element: {"method":"class name","selector":"more"}
Any ideas to get around this?