Hi, I am trying to test the creation of the work order using HEXAGON Software.
When I select Work, it is automatically failing wherever I pressed.
can someone help please?
Hi, I am trying to test the creation of the work order using HEXAGON Software.
When I select Work, it is automatically failing wherever I pressed.
can someone help please?
Bumping for others!
Because you element is not found. Try creating a locator that matches with the element
After the Click on the span_LOG IN, before the Click on the span_Work, you need to insert a wait statement for the HTML element “span_Work” to be visible on the screen. For example,
WebUI.click(findTestObject('span_LOG IN'))
WebUI.waitForElementVisible(findTestObject('span_Work', 10))
WebUI.click(findTestObject('span_Work'))
Do you understand why a wait statement is needed?
Have a look at an explanation in the Katalon docs:
I guess, you used a Recording tool of Katalon Studio to generate the Test Case script, Am I right?
I suppose you got a question: Why the Recording tool didnt insert the appropriate “waitFor*” statement before and after the click?
Simply because the tool is not designed good enough. The tool helps you getting started with the testing job by generating a runnable Test Case script, but the codes generated by the tool is not necessarily complete. The codes would require your manual debugging and amendements. Especially you need to solve the wait-time issues yourself.
I am using the recording tool.. wherever I select, it is not working..
Are you having a problem in selecting an item in a drop-down list in a web page using Katalon Studio?
Well, it is a frequently and repeatedly asked question here.
You should make a search in the previous posts in this forum with the key “unable to select an item in a drop down list”. You will find a lot of previous posts. Please read them through.
You need to understand some technical details to solve this issue and investigate your system to find out the reason why.
If you want us, the guys in this forum, to help you, please disclose the following information