[Solved] What would be the appropriate syntax for clicking the “send to” drop down menu? (See image for reference)


Try an attribute = value CSS selector to target the element by an attribute and its value.

IE.document.querySelector("[sourcecontent="send_to_menu"]").click

Make sure you have a sufficient page load wait before trying to click. As a minimum you need

While IE.Busy Or IE.readyState < 4: DoEvents: Wend 
IE.document.querySelector("[sourcecontent="send_to_menu"]").click

You could also use

IE.document.querySelector("#sendto > a").click

0

solved What would be the appropriate syntax for clicking the “send to” drop down menu? (See image for reference)