屏幕验证码识别
命令说明
使用 Laiye Intelligent Document Processing 识别指定屏幕范围的验证码,返回识别结果
命令原型
sRet = Mage.ScreenOCRVerifyCode(target,rect,config,time,optionArgs)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
target | True | decorator | @ui"" | 通过鼠标选取或截取需要识别的目标屏幕范围。包含窗口、元素、范围等信息 |
rect | True | dictionary | {"x":0,"y":0,"width":0,"height":0} | 需要查找的范围,程序会在控件这个范围内进行识别,如果范围传递为 {"x":0,"y":0,"width":0,"height":0},则进行控件矩形区域范围内的识别 |
config | True | expression | {} | Laiye Intelligent Document Processing 的调用配置 |
time | True | number | 30000 | 指定等待重试查找屏幕范围时间(以毫秒为单位),如果超出该时间,则引发异常。默认30000毫秒(30秒) |
bContinueOnError | False | boolean | False | 指定即使活动引发错误,自动化是否仍应继续。该字段仅支持布尔值(True,False)。默认值为False |
iDelayAfter | False | number | 300 | 执行活动后的延迟时间(以毫秒为单位)。默认时间为300毫秒 |
iDelayBefore | False | number | 200 | 活动开始执行任何操作之前的延迟时间(以毫秒为单位)。默认的时间量是200毫秒 |
返回结果
sRet,将命令运行后的结果赋值给此变量。
运行实例
/**********************屏幕验证码识别**********************
命令原型:
sRet = Mage.ScreenOCRVerifyCode(@ui"",{"x":0,"y":0,"width":0,"height":0},{},30000,{"bContinueOnError":false,"iDelayAfter":300,"iDelayBefore":200})
入参:
target--目标元素,该示例中使用的为chrome打开"北京电子税务局"后的图片验证码元素.Url:https://etax.beijing.chinatax.gov.cn/sso/login?service=http://etax.beijing.chinatax.gov.cn/xxmh/html/index_login.html?t=1643264339708
rect--识别范围
config--mage配置,需配置Pubkey和Secret.Type:Dict
time--超时时间.默认单位:毫秒.Type:Int
optionArgs--可选参数(包括:错误继续执行/执行后延时/执行前延时).Type:Dict
出参:
sRet--函数调用的输出保存到的变量
注意事项:
需要获取mage对应的Key/Secret和URL
****************************************************/
Dim sRet="" // 输出结果
sRet = Mage.ScreenOCRVerifyCode(@ui"图像<img>1",{"x":0,"y":0,"width":0,"height":0},{"Pubkey":"684wM60rdbDnciVS4iXgZmNL","Secret":"AYzWVO0srKrN8t3rhL0jfhS05uaJnj92","Url":"https://demo.laiye.com:8082"},30000,{"bContinueOnError":false,"iDelayAfter":300,"iDelayBefore":200})
TracePrint(sRet)