I'm using WatiN to fill in a form on a website. However, the text boxes' autocomplete feature only fire if I actually take the mouse and click on a text box. I've tried using Select()
, Click()
and TypeText()
and in all of those cases, the autocomplete on the form doesn't fire.
Has anyone encountered this? Any way I can go around it? I assume that the autocomplete functionality gets triggered by JavaScript, but if I could just emulate a 'proper' mouse move and click, that would be enough for me.