Open GoogleCodeExporter opened 9 years ago
I tried this as well, but to no avail:-
driver.findElementByXPath("//*[@id='accTempForm_RollRuleVal']").SendKeys
Chr(49) & Chr(48)
Original comment by rohan.ka...@gmail.com
on 21 Feb 2014 at 8:59
It looks like a timing issue.
Try to add a wait before calling sendkeys and make sure you've called the
setImplicitWait at the beginning :
Dim driver As New SeleniumWrapper.WebDriver
driver.Start "firefox", "http://uk.news.yahoo.com"
driver.setImplicitWait 5000
...
driver.wait 1000
set ele = driver.findElementbyID("accTempForm_RollRuleVal")
ele.sendkeys "100"
Without an example to reproduce your issue, i won't be able to help much.
Original comment by florentbr
on 21 Feb 2014 at 10:31
Original comment by florentbr
on 8 Sep 2014 at 5:40
Original issue reported on code.google.com by
rohan.ka...@gmail.com
on 21 Feb 2014 at 8:57