Selenium 에뮬레이터 입력

1329 단어 selenium

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 간격으로 사용하기

좋은 웹페이지 즐겨찾기