Open GoogleCodeExporter opened 9 years ago
Selenium 1 commands are being deprecated and no longer maintained, you should
use the Selenium 2 commands instead:
Set driver = CreateObject("SeleniumWrapper.WebDriver")
driver.start "chrome", "http://www.chip.gov.co"
driver.open "/"
driver.findElementByLinkText("Consultas", 5000).Click
driver.findElementByLinkText("Informe al Ciudadano").Click
Or using ids:
Set driver = CreateObject("SeleniumWrapper.WebDriver")
driver.start "chrome", "http://www.chip.gov.co"
driver.open "/"
driver.findElementByCssSelector("#j_id114\\:j_id116\\:j_id126 > a", 5000).Click
driver.findElementById("j_id114:j_id116:j_id126:InformacionEnviada:out").Click
Original comment by florentbr
on 24 Mar 2015 at 4:43
Original issue reported on code.google.com by
migueldi...@gmail.com
on 24 Mar 2015 at 2:15