Hey guys,
I'm trying to automate a file download from Internet Explorer from the website below as a .csv file. I can't seem to get past the notification bar at the bottom that asks to open, save, or cancel. Any help would be appreciated!!

https://noms.wei-pipeline.com/pl-nom...nuitem=2600315

What I have so far:

Sub Test()
Dim IE As Object
Set IE = CreateObject("InternetExplorer.application")
IE.Visible = True
IE.Navigate ("https://noms.wei-pipeline.com/pl-noms/cip002.buildFrame2?menuitem=2600315")
Do
DoEvents
Loop Until IE.readyState = READYSTATE_COMPLETE
IE.document.all("p_output_option").Item(2).Checked = True
IE.document.forms(0).submit
End Sub