Here is the Excel VBA code I have so far that opens Microsoft Edge:
Dim obj As New WebDriver
Sub testEdgeAuto()
obj.Start "edge", ""
obj.Get "https://www.redfin.com"
obj.FindElementByName("searchInputBox").SendKeys
For the Sendkeys, I can input an address value, and on the webpage it will populate the search box with it. What I would like to do is have SendKeys fetch either the value from a cell or a range of cells and input them in the search box. Suggestions? Thanks!
Don't know the parameters and arguments of sendkeys on how to do that.