Does JavaBridge in testComplete work on a Python Project ?
I am working on a project to test the contents of a pdf file. I was suggested with this URL in my previous question "https://support.smartbear.com/articles/testcomplete/testing-pdf-files-with-testcomplete/#Preparation". Now when I tried it following the steps I got an error stating this "RuntimeError java.lang.IllegalArgumentException: argument type mismatch" In this particular code step docObj = JavaClasses.org_apache_pdfbox_pdmodel.PDDocument.load_3(path) Under path I have given the entire path of the file like D:\somepath\filename.pdf Also, I have tried with the following docObj = JavaClasses.org_apache_pdfbox_pdmodel.PDDocument.load_3("D:\somepath\filename.pdf") docObj = JavaClasses.org_apache_pdfbox_pdmodel.PDDocument.load_3("D:\\somepath\\filename.pdf") Need adviceSolved2.5KViews0likes4Comments