Test Suite not found by Execute Katalon Studio Task in AzureDevOps

I have tried numerous ways to find the files, even using the Command Line task on the pipeline to see where the files are. I have a screen shot of the pwd command showing that the files are there. However if you look at the screenshot of Execute Katalon Studion Task, it cannot find the test suite. I have run these tests in the Katalon Studio IDE and it is working fine.

The issue here is that it cannot find the Test Suite that i’m trying to run despite, me be able to see that the files are there using the command line task to print the working directory and the contents of the test project folder.

Hi @mohammed.kawsar,

The double quotes of the parameter -testSuitePath value are not correct. Please manually change it to:

-testSuitePath="Test Suites/PatientTabTests"
1 Like

@duyluong Thank you so much! Can’t believe it was something as simple as that, that was missed. I have another issue, in terms of the tests running successfully on the Katalon Studio IDE however, they don’t seem to be working through the command line.

I get a lot of “ElementNotInteractableException: element not interactable” errors. I am using a keyword to verify that the element is clickable before I click on a object yet it still gives me this error.

“Root cause: com.kms.katalon.core.exception.StepFailedException: Unable to click on object”

I get a lot of “ElementNotInteractableException: element not interactable” errors. I am using a keyword to verify that the element is clickable before I click on a object yet it still gives me this error.
“Root cause: com.kms.katalon.core.exception.StepFailedException: Unable to click on object”

Hi @mohammed.kawsar,

The default resolution of all VM machines of Microsoft hosted machines is 1024x768. When the window size is smaller than expected, your element is overlapped by other elements so KRE cannot click on it normally.

For a solution, you can use the Screen Resolution Utility plugin to modify the resolution of VMs.

Also, please refer to this sample for more details: https://github.com/duyluonganh/kat-download-file/blob/master/azure-pipelines.yml

Thanks

2 Likes