Am new to Katalon and am creating my first test cases. Problem with our application is that all tag ID attributes change each time the page is loaded. I have no control over this but I can add a css class to the div that contains my desired input tag.
How can I make an Xpath selector that says, "Select the input node that is found as a descendant (2 levels) of a div node that has the class "k-text_var’ "? With the understanding that it is not the only class for that div node, for example class=“form-group k-text_var”. There could be two, three, or four other classes in there too.
Hi everyone,
I am learning automation using katalon. I have this situation:
I have a form with 3 dropdpwns: state, department, category. Depending on the state, the department would be show, category depend on department. In each field you can tipping, and the system shows the item of the dropdown and you can select it.
The problem is: the Id of each field is dynamic. How can write my test case.