Skip to content

Commit

Permalink
浏览器扩展 click 可获得焦点
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Feb 1, 2024
1 parent b9da5a3 commit d6ee051
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions WEB增强-账号密码登录演示.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ pbottleRPA.sleep(1000)


//输入账号密码
pbottleRPA.browserCMD_click(`input[name='uname']`)
pbottleRPA.browserCMD_val(`input[name='uname']`,'test')

pbottleRPA.browserCMD_click(`input[name='pwd']`)
pbottleRPA.browserCMD_val(`input[name='pwd']`,'123456')
pbottleRPA.sleep(1000)

Expand Down
7 changes: 4 additions & 3 deletions pbottleRPA.js
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ exports.browserCMD_alert = browserCMD_alert;

/**
* 浏览器增强命令 需要安装小瓶RPA的浏览器拓展
* 模拟点击 参考 jQuery click() 方法,改为浏览器 native 的 click()
* 模拟点击 参考 jQuery click() 方法,改为浏览器 native 的 click() 并获取焦点
* @param {string} selector 元素选择器
* @returns
*/
Expand All @@ -595,6 +595,7 @@ exports.browserCMD_alert = browserCMD_alert;
}
exports.browserCMD_click = browserCMD_click;


/**
* 浏览器增强命令 需要安装小瓶RPA的浏览器拓展
* 显示 参考 jQuery show() 方法
Expand Down Expand Up @@ -795,7 +796,7 @@ exports.browserCMD_prop = browserCMD_prop;
* 常用工具
* 等待屏幕上的图片出现
* @param {string} tpPath 图片模板路径
* @param {Function} intervalFun 间隔的收入,function格式
* @param {Function} intervalFun 检测间隔的操作,function格式
* @param {number} timeOut 等待超时时间 单位秒
* @returns 结果的位置信息,json格式:{x,y}
*/
Expand Down Expand Up @@ -825,7 +826,7 @@ exports.waitImage = waitImage;
* 常用工具
* 等待屏幕上的图片消失
* @param {string} tpPath 图片模板路径
* @param {function} intervalFun 间隔的收入,function格式
* @param {function} intervalFun 检测间隔的操作,function格式
* @param {number} timeOut 等待超时时间 单位秒
* @returns
*/
Expand Down

0 comments on commit d6ee051

Please sign in to comment.