Jump to content

PDF Save Dialog Box Stop working


Recommended Posts

Hi there

We have a legacy app that utilising this AutoIt/Selenium for automating the web app that have. It's been running well since 2010 late 2014. We stoped a bit on this. Then start again this year.

We have an issue on one of the step which is relating on PDF Save Dialog Box Stop working - basically it won't click to Save button for some reason. We pin point this and we believe it stop at lib.AU3_Send("!S",0); ... line 7 below.

Any ideas?

 

public void SaveDialogueBox(String filePath, String firstName, String lastName) {
        lib.AU3_WinWaitActive("File Download", "", 10);
        lib.AU3_WinActivate("File Download", "");

        // Debug: VV - swap
        // lib.AU3_ControlClick("File Download", "", "[CLASS:Button; INSTANCE:2]","",1, 1, 1);
        lib.AU3_Send("!S", 0);
        

        lib.AU3_WinWaitActive("Save As", "", 10);
        lib.AU3_Sleep(500);
        lib.AU3_Send(filePath + firstName + " " + lastName, 1);
        lib.AU3_Sleep(2000);
        if (reader.getWindowVersion().equals("Windows Vista or Windows 7")) 
        {
            //lib.AU3_ControlClick("Save As", "", "[CLASS:Button; INSTANCE:1]","",1, 1, 1);
            lib.AU3_Send("!S", 0);
        }
        else 
        {
            lib.AU3_ControlClick("Save As", "", "[CLASS:Button; INSTANCE:2]","",1, 1, 1);
        }
        lib.AU3_WinWaitActive("Download complete", "", 10);
        lib.AU3_Sleep(2000);
        lib.AU3_ControlClick("Download complete", "", "[CLASS:Button; INSTANCE:4]","",1, 1, 1);
        lib.AU3_WinActivate("[REGEXPTITLE:.*EUC .*]", "");
    }

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...