IE11 Frame Notification Bar Save button

后端 未结 2 942
花落未央
花落未央 2020-12-02 01:17

On a 64-bit system with MS Excel 2010 and IE11 I\'m using this code to automate download process from a website:

hWnd = FindWindowEx(IE.hWnd, 0, \"Frame No         


        
相关标签:
2条回答
  • 2020-12-02 01:21

    If somebody is still trying to find the solution, for IE11 it's here.

    On the very first line of the code of Vahagn Sargsyan above, instead of "Frame Notification Bar" get the exact title of the dialog box, which might be in English "View Downloads - Internet Explorer". This allows you to grab the right hWnd.

    Because in IE11 there no more button accelerator to Save files, follow the solution posted here by pmr.

    From pmr code, just get the following lines:

    Set e = o.ElementFromHandle(ByVal h)
    Dim iCnd As IUIAutomationCondition
    Set iCnd = o.CreatePropertyCondition(UIA_NamePropertyId, "Save")
    
    Dim Button As IUIAutomationElement
    Set Button = e.FindFirst(TreeScope_Subtree, iCnd)
    Dim InvokePattern As IUIAutomationInvokePattern
    Set InvokePattern = Button.GetCurrentPattern(UIA_InvokePatternId)
    InvokePattern.Invoke
    

    This should solve your issue. This unlocked the situation for me with French localisation.

    0 讨论(0)
  • 2020-12-02 01:40

    I'm assuming you're talking about that little frame that pops up at the bottom of IE giving you options to Open, Save or Cancel. If so, you might wanna check out another answer to a similar question asked here.

    A secondary solution would be a more complicated one (here), but works nonetheless. You'll have to import the modules from the workbook provided in this forum (you'll need to signup for membership though, but its free so just do it.) and that'll do basically what you need, albeit in a way that allows you more flexibility (choose filepath, filename, etc) and also a little more convoluted.

    Either way, hope I helped.

    0 讨论(0)
提交回复
热议问题