I\'m trying to select a value in a list on a website using VBA in Excel.
It\'s not a \"normal list\", the website is using jQuery Chosen auto-complete (like this : example ).
It
Well, I finally found an answer.
Maybe it will help others :
Dim CurrentWindow As HTMLWindowProxy: Set CurrentWindow = IE.document.parentWindow
Call CurrentWindow.execScript("jQuery('#type').val('2');jQuery('#type').trigger('chosen:updated');")