I’m using BeautifulSoup and Selenium for web scraping reviews on Goodreads. I’m able to get the results I want, but I want to use Actions to click the “show more reviews” button so that the page keeps loading and I can repeat the code to get more reviews.
Here is what the HTMl looks like:enter image description here There is no ‘unique’ identifier like an ID to use to target the “show more reviews” button; the class is the same as other buttons on the page. I’m not sure how to target this specifically.
I’ve tried all kinds of “By.__” variations I can think of, even XPath.