在非生产环境中重新验证(值得吗?)
recaptcha in a non-productive environment (is it worth it?)
我想知道在非生产环境中(如果需要)自动执行以下验证码的最合适方法是什么。看一看:
a)Making use of a boot that allows you to obtain a user token from our
session to be able to enter it through automation
b)Using the click() method on the appropriate elements
c)Using: document.getElementById("recaptchamsg").required = false;
d) None, recaptcha must be disabled for the test to skip this step
有必要吗?在生产环境中?正确的做法是什么?
好吧,如果可能的话,必须明确禁用 recaptcha
以便测试跳过此步骤。
如果不可能,您将不得不使用 Selenium 传递它。如何做到这一点取决于您的应用程序的类型或 recaptcha
,并非所有类型都可以通过 Selenium 传递。
我想知道在非生产环境中(如果需要)自动执行以下验证码的最合适方法是什么。看一看:
a)Making use of a boot that allows you to obtain a user token from our session to be able to enter it through automation
b)Using the click() method on the appropriate elements
c)Using: document.getElementById("recaptchamsg").required = false;
d) None, recaptcha must be disabled for the test to skip this step
有必要吗?在生产环境中?正确的做法是什么?
好吧,如果可能的话,必须明确禁用 recaptcha
以便测试跳过此步骤。
如果不可能,您将不得不使用 Selenium 传递它。如何做到这一点取决于您的应用程序的类型或 recaptcha
,并非所有类型都可以通过 Selenium 传递。