我需要有关 python 的帮助...您知道单击按钮登录后如何检查 Web 浏览器的响应(此处:提交)吗?如果我的登录成功,我想比较 html 代码并返回 True 但不幸的是我不知道如何。:/ 任何提示都是无价的。:) 那是我来自 selenium 的代码:
driver.find_element_by_css_selector("input.username").send_keys("margie")
driver.find_element_by_css_selector("input.password").clear()
driver.find_element_by_css_selector("input.password").send_keys("margie")
driver.find_element_by_css_selector("div.btn.submit").click()
我可以使用“如果”吗?
谢谢你们的时间!