快捷方法一:
打开 f12
,普通V3版搜索 .execute(
,企业V3搜索 .enterprise.execute
,查找代码中的 action
参数,
如下图所示,如果没有搜索到,请使用方式 2。
...
快捷方法二:
打开 f12
,普通V3输入 debug(grecaptcha.execute)
,企业V3输入 debug(grecaptcha.enterprise.execute)
,点击登录等完成验证,等下断点触发,在 Scope
中复制 action
的值,如下图所示:
...
方法三:
今天的教程是spotify的注册页面,这个网页有2个验证码,分别是recaptchav2企业版和v3企业版
...
3,搜索关键词 grecaptcha.enterprise.execute,这是v3企业版的执行函数,如果是v3普通版关键词应该是grecaptcha.enterprise.executeexecute,如果搜索不到,可以尝试搜索grecaptcha,然后在后面的代码中找execute
然后点击下面搜索出来的内容,然后点代码前面的行数字,打上断点
...