0

I have a .dll file that was used with HP UFT(vbScript) as an add-in to identify UI objects. Now we have moved from HP UFT to HP LeanFT(java). Is there any way to call the same .dll file functions through java.

  • Are you able to add the dll as a reference to the C# project? If so, it should be pretty straightforward from there. – Adelin Aug 25 '17 at 06:55

1 Answers1

0

Please look at JNI wrapper creation for your native DLL: Java Native Interface

Sasha
  • 1,958
  • 1
  • 19
  • 33