user interface - Handle GUI window changes -


I am doing automation script for the installation wizard using AutoIt. I'm trying to handle the window in any way.

Can anyone explain how this GUI works?

When I click on the next button it looks like components is changing GUI. Is this the case? Or a new window has been created and old is destroyed?

I've found that the process ID is the same for all windows.

I'm sure there is no way to know which "state" is in GUI or in what phase?

Anyway all windows have the same title.

Thanks / Enders

This will be the program on which you are automating Depends on its basis.

The easiest way is to see what changes will happen in the GUI between the steps, if the potential candidate is giving instructions for that label, or a button on which the text is changing (like the button "ends ", You can finally find your address).

Most installer programs are group windows for each step to control. These are generally implemented as communication resources (as can be seen when some resizer is being used on them. ). So even though the window remains the same, the panels are being created / destroyed appropriately, this is a very tidy way of doing this, the obvious reason is that you need code to create and destroy many controls is not. The resource made dialog does not have good class names like windows do occasionally, so this can not be a reliable way of checking the situation.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -