Web Scrapping / Send Keys

Shokan_Prince

New Member
Joined
Aug 23, 2013
Messages
26
Hello everybody :biggrin:
After a long research I cannot figure it out how to write in a search box via sendkeys. This search box doesn't have a search button, it works with an auto complete, and that's why I need to simulate the keystrokes.

Because in this way

Code:
    With IE
        .Navigate Url
        .Visible = True
        While .Busy Or .ReadyState <> READYSTATE_COMPLETE: DoEvents: Wend
        Set HTMLdoc = .Document
    End With
    
    Set inputelements = HTMLdoc.getElementById("filter-name")
    inputelements.innerHTML = "turbo"
    inputelements.outerText = "turbo"
Doesn't work :(

So basically I need to write letter by letter for the autocomplete to work...

Thanks in advance for any help...
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,215,671
Messages
6,126,133
Members
449,294
Latest member
Jitesh_Sharma

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top