码迷,mamicode.com
首页 > 其他好文 > 详细

Selenium 模拟人输入

时间:2014-11-17 19:22:52      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   使用   sp   for   div   


public
static void type(WebElement e,String str) throws InterruptedException { String[] singleCharacters = str.split(""); // Interval is 0.5 second between each type of character, this is to // simulate real human action for (int i = 0; i < singleCharacters.length; i++) { if (singleCharacters[i]!="") { e.sendKeys(singleCharacters[i]); Thread.sleep(500); } } Thread.sleep(1000); }

在sendKeys时,把字符串拆分成单个字符,使用间隔0.5s

Selenium 模拟人输入

标签:style   blog   io   color   ar   使用   sp   for   div   

原文地址:http://www.cnblogs.com/tobecrazy/p/4103986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!