Does katalon has feature to chain locator to find test object?
In appium we can chain locator to find MobileElement, it works like this:
driver.findElementByAccessibilityId(“Test1”).findElementByAccessibilityId(“Test2”)
In page object it works like this:
@AndroidFindBy(className = “android.widget.ScrollView”)
@AndroidFindBy(className = “android.widget.TextView”)
We have a case where we need to chain the locator like that mentioned above.