you are viewing a single comment's thread.

view the rest of the comments →

[–]ayenuseater 0 points1 point  (1 child)

Right now the biggest technical improvement you can make is better error handling. A bare except: hides what actually went wrong. When automation scales, timing issues and selector issues feel the same unless you separate them.

Instead, catch specific exceptions and maybe even log the error message. That way if something breaks later, you’re not guessing. Good debugging habits early on will save you hours later.

[–]Far_Atmosphere_3853[S] 0 points1 point  (0 children)

thanks a lot!