this post was submitted on 02 Nov 2023
6 points (100.0% liked)

Selenium Web Browser Automation

97 readers
2 users here now

Users forum for selenium browser testing. Do not advertise here.

founded 1 year ago
MODERATORS
6
submitted 11 months ago* (last edited 11 months ago) by joystick to c/selenium
 

I use selenium in python with chromedriver to scrape my bank account balances everyday so I don't have to log into multiple websites. I don't think Chase likes this and they actively try to stop it with their use of shadow roots, etc., but I've still managed to scrape Chase up till now. As of a couple weeks ago, I'm getting a really strange behavior, where if I run the python script there is an element not found error message for an element that clearly is there. Weirdly, if I put a breakpoint in the code and then simply resume execution once it hits the breakpoint then the element is found (by ID) and my script runs, but otherwise it doesn't. Timers don't help. I've tried sleeping for up to 20 seconds and the element is still not found, but something about hitting a breakpoint in the python script allows the element to be found. Anyone else run into this?

The line is:

element = driver.find_element("id", "requestAccounts")

you are viewing a single comment's thread
view the rest of the comments
[–] joystick 2 points 11 months ago

Oh, wow, that worked. Thanks!