Hi, I have a click activity that would click on a button on a Java Webstart application (jnlp) to expose a section that has a checkbox button. My next activity would be to check the checkbox. When I run an unattended automation, I get the message from the check/uncheck activity that “could not find the user-interface (UI) element for this action”. In my previous click activity, I had included a verify execution check to check that the checkbox appears, and in the error screenshot taken, I do see the checkbox visible. So, I have a few questions:
(1) Does the verify execution of the click activity confirms that the checkbox is visible before proceeding?
(2) If I have the above verify execution, do I still need to put a delay before on the check/uncheck activity?
(3) I can see that the click activity works, so, is this a confirmation that my Java extension is working properly? If so, what could be a reason for the activity to fail? In my Java Console logs, I could see errors like “loadUiPathBridgeDll - java.lang.UnsatisfiedLinkError: C:\Users.….Nuget\packages\UiPath\23.4.67.58671\build\UiPath\JavaSupport\UiPathJavaBridgeImplV8.dll: %1 is not a valid Win32 application”.
I am running Java version 1.8.0_181 32-bit and UiPathJavaBridge interface dll was loaded from C:\Program Files (x86)\Java\jre1.8.0_181\bin\UiPathJavaBridgeV8.dll.
I launched the application via Start Process <.bat file>, where the bat file specifies:
javaws
Thanks.