Forum Discussion
tiffany_ip
13 years agoOccasional Contributor
Hi Tanya,
I tried it out and it worked out perfectly for the window visibility on screen problem, I was able to select it and interact with it.
For those who have a similar problem, this is an example of what I wrote (obviously I think I went overboard with the waits and checks but it worked out for me without a problem).
My window is LogLvlConfig:
if (LogLvlConfig.Exists) {
Aliases.RefreshMappingInfo();
LogLvlConfig.waitProperty("VisibleOnScreen", true, 10000);
LogLvlConfig.Activate();
}
Thank you to everyone who helped!
I tried it out and it worked out perfectly for the window visibility on screen problem, I was able to select it and interact with it.
For those who have a similar problem, this is an example of what I wrote (obviously I think I went overboard with the waits and checks but it worked out for me without a problem).
My window is LogLvlConfig:
if (LogLvlConfig.Exists) {
Aliases.RefreshMappingInfo();
LogLvlConfig.waitProperty("VisibleOnScreen", true, 10000);
LogLvlConfig.Activate();
}
Thank you to everyone who helped!