Hello so I am trying to login and then scan the html for a form error. I am using the selenium library. heres the html code I am trying to find:
<div class="_3_2jD" id="form_error"><p>Please check the code we sent you and try again.</p></div>
this is my code I am using to try and find it:
if "form_error" in self.chrome_browser.page_source:
print("trying again" + random_code)
any suggestions :D