Questions tagged [katalon]
79 questions
-1
votes
1 answer
Is there are way to upload one file in multiple (input) places on the web using Katalon studio
I have to upload one file in different places on the web using katalon
I am using:
'Upload test-photo.png to input_browse'
WebUI.uploadFile(findTestObject('input_browse'), 'D:\\test-photo.png'
I have to upload the same file on below places
'Upload…

Akzy
- 1,817
- 1
- 7
- 19
-1
votes
2 answers
Senchatest locators, selenium can't find
Hi I'm trying to use selenium to click on some element on my web app, which i gave senchatest locator "senchatest=mainMenu_plus" (because of random ID's)
I have script in Python
self.addProperty =…

matsi
- 27
- 5
-2
votes
1 answer
What are the differences between Katalon studio and Katalon recorder?
I would like have automation tests using Katalon. I have seen there are two options, Katalon studio and Katalon recorder.
Can you please tell me and explain what are the differences between them? Each one has a different purpose?
Thank you!

Hagai
- 11
- 4
-2
votes
2 answers
How to set seconds as variable in Implicit Wait
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
Is it possible to set '10' as variable so that it can be chabged dynamically? If possible how? Thank you!