Simulate slow typing in Protractor(在 Protractor 中模拟慢速打字)
问题描述
sendKeys()
方法会一次发送所有密钥(实际上,一次一个,但非常快):
sendKeys()
method would send all the keys at once (actually, one at a time but very quickly):
var elm = element(by.id("myinput"));
elm.sendKeys("test");
有没有办法减慢打字速度,以便 Protractor 一次发送一个字符,每个字符之间会有一点延迟?
Is there a way to slow the typing down so that Protractor would send one character at a time with a small delay between each of the characters?
我们可以完全减慢 Protractor,但这并不能改变 sendKeys()
的工作方式,它也会减慢一切,而我们只需要发送密钥"部分并且仅在特定情况下.
We can slow down Protractor entirely, but that does not change the way sendKeys()
works and it would also slow everything down while we just need the "send keys" part and only in specific cases.
推荐答案
思路是使用browser.actions()
并构造一系列发送密钥"命令——一个字符串中的每个字符.在每个发送密钥"命令之后,我们通过引入 自定义 sleep代码>动作.最后,这是我们提出的可重用函数:
The idea is to use browser.actions()
and construct a series of "send keys" command - one for every character in a string. After every "send keys" command we are adding a delay by introducing a custom sleep
action. At the end, here is a reusable function we've come up with:
function slowType(elm, keys, delay) {
var action = browser.actions().mouseMove(elm).click();
for (var i = 0; i < keys.length; i++) {
action = action.sendKeys(keys[i]).sleep(delay);
}
return action.perform();
}
用法:
slowType(elm, "some text", 100);
这篇关于在 Protractor 中模拟慢速打字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Protractor 中模拟慢速打字
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01