I have been having trouble on referring to a search box on a website through Selenium in VBA. The HTML code of the box is:
<input type = "search" class ="form-control input-sm"
placeholder aria-controls="result_table"> ==$0
I have tried
bot.findElementByCssSelector(".form-control").SendKeys ("werresf")
bot.findElementByCssSelector(".form-control.input-sm").SendKeys ("werresf")
bot.findElementByCssSelector(".input-sm").SendKeys ("werresf")
bot.findElementByCssSelector(".form-control input-sm").SendKeys ("werresf")
bot.findElementByClassName("form-control input-sm").SendKeys ("werresf")
But none of them seems to work. Any help is greatly appreciated.
To send a character sequence within the desired element you can use either of the following Locator Strategies:
Using
FindElementByCss
:Using
FindElementByXPath
:Reference
You can find a couple of relevant discussions in: