Hi All,
I have a dynamic drop down list and want to select the value by title.
Please help me how to go about in katalon.
Hello,
this is not classic HTML select box, so you may try to expand it and then use click method on your desired element.
XPath may be like //span[@title='Cathlab']
Well, it is just a guess, I don’t know how your page actually works.
// expand dropdown menu
WebUI.click('selectBoxTestObject')
// select specific option
WebUI.click('specificOptionTestObject')
Try to identify both selectors in ChroPath or similar browser’s add-on.

