任何人都使用任何想法在硒中捕获验证码
任何人都使用任何想法在硒中捕获验证码
anyone used any idea for capturing captcha in selenium
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
任何人都使用任何想法在硒中捕获验证码
anyone used any idea for capturing captcha in selenium
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如下所示,两者是互斥的。如果 Selenium 可以模拟验证码,那么它将允许机器人覆盖验证码机制(这意味着排除机器人)。
我使用的两种方法:
在代码中设置一个开关,禁止使用验证码进行 Selenium 测试。
自动化其余测试并手动输入验证码 - 好文章此处 使用“break”命令。
As below, the two are mutually exclusive. If Selenium could simulate a captcha, then it would allow robots to override the captcha mechanism (which is meant to exclude robots).
Two ways I've used:
Have a switch in the code to disallow captcha for Selenium testing.
Automate the rest of the test and enter the captcha manually - good article here using the "break" command.
验证码的全部要点是它不应该由应用程序来完成。
因此,您要么
The whole point of captcha is that it shouldn't be doable by an application.
So you either