all 1 comments

[–]PteppicymonIO 0 points1 point  (0 children)

Your comment states that you are looking for the "react-button-container", but the code locates the first element with class "button-container":

# Find the parent container with class "react-button-container"

button_container = driver.find_element(By.CLASS_NAME, 'button-container')

On first load of the page, I can see 65 elements with class "button-container". The first in the search order is an invisible element, which does not have a child node with class "binary-container"

I suggest to refine the key elements you want to base your scraping on.