I have a test thant launches a desktop application and from this application a browser application with authentication window is launched. The problem is when running the test it executes all steps that are related to the desktop application and when it comes to the browser it fails to detect it any help?
Asked
Active
Viewed 534 times
0
-
Can you see your browser if you select "Edit Application Configurations" item in Silk4J menu? If not, you will need to add it. – Johnbo May 10 '18 at 11:10
-
I added it but it didn't change anything. Still the same problem – narcisse May 10 '18 at 11:36
-
Is the problem with the web content, or the authentication window? Each browser treats the authentication window differently. For some browsers you need to enable Microsoft Accessibility in order to automate it. – Andy May 11 '18 at 12:57
2 Answers
0
Which version of Silk Test and which browser + version are you testing against? As older versions of Silk Test may not provide support for the more recent browser versions. That's why it is recommended to stay version current.
Also if you log an incident via supportline@microfocus.com we would be happy to have a look at the issue in detail.

John Lyttle
- 31
- 1
0
After desktop application steps, to connect to the browser application (which has been opened through desktop app) you can use below code,
Desktop.attach("\BrowserApplication");
Desktop.< window >find ("\BrowserWindow[@caption='']").setActive();