Not getting the unique object while inspecting the windows dropdown and text object

Hi Everyone,

We tried to record our application windows recorder option, when we recorded the workflow for login to the application. The object is “pane” object. when I try to set text to the password field the object is not coming as unique object. All the fields on login screen is coimng as Pane object. Is there any other way to identify the object in windows application?
We are able to identify the same login screen object through UFT, but through katalon studio we are not able to identify element specific locator.

1 Like

Hello there, could you share more info. about this?

What is the information on the TestObject element (Locator)?
Have you recorded the test using Windows Recorder or the Native Windows Recorder?
The test case steps could help also.

To resolve issues with identifying non-unique Windows application objects (like password fields) in Katalon Studio when they appear as generic “Pane” elements:

1. Why This Happens

  • Reason: Windows apps built with frameworks (e.g., WinForms, WPF) may not expose accessibility properties (like AutomationId or Name), leading Katalon’s recorder to label elements as generic “Pane” objects.
  • UFT vs. Katalon: Tools like UFT often use different engines (e.g., UIAutomation vs. MSAA) or custom plugins to handle such cases.

2. Solution 1: Manually Define XPath for Elements

Use Windows Spy or Inspect.exe tool to identify unique properties and build custom XPaths.

Steps:

  1. Open Windows Spy:
  • Launch Katalon Studio → Start Windows Spy.
  1. Identify Properties:
  • Hover over the password field and note:
    • ClassName, Name, AutomationId, ControlType.
  1. Build XPath:

xml

//Pane[@ClassName='Edit' and @Name='Password']
  1. Add to Object Repository:
  • Create a new Windows test object.
  • Set Locator to XPath and paste your custom XPath.

3. Solution 2: Use AutomationId or Name Properties

If your app exposes AutomationId or Name:

groovy

import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows

// For AutomationId:
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password", 
    [:], 
    ["AutomationId": "txtPassword"]) // Replace with actual AutomationId

// For Name:
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password", 
    [:], 
    ["Name": "Password"])

4. Solution 3: Use Windows Accessibility Tools

Tools like Inspect.exe or UI Automation Verify can reveal hidden properties:

  1. Download Inspect.exe from the Windows SDK.
  2. Run the tool and inspect the password field.
  3. Look for properties like RuntimeId, ControlType, or LocalizedControlType.

5. Solution 4: Update Katalon and Plugins

  • Update Katalon to the latest version.
  • Install/Update the Windows Desktop Application Plugin (if missing).

6. Solution 5: Use Coordinates (Last Resort)

If no unique properties exist, use clickOffset with coordinates relative to the parent pane:

groovy

Windows.clickOffset(findWindowsObject("Object Repository/Pane"), 100, 50) // Adjust coordinates
Windows.setText(findWindowsObject("Object Repository/Pane"), "your_password")

7. Compare with UFT’s Approach

If UFT works, replicate its identification logic:

  • UFT Property: Check which properties UFT uses (e.g., micClass, nativeClass).
  • Map to Katalon: Use equivalent properties in Katalon’s test object.

Example Workflow for Password Field:

groovy

// Wait for the login pane
Windows.waitForElementPresent(findWindowsObject("Object Repository/LoginPane"), 20)

// Use custom XPath to identify the password field
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password", 
    [:], 
    ["XPath": "//Pane[@Name='PasswordInput']"])

// Click login button
Windows.click(findWindowsObject("Object Repository/LoginButton"))

Key Notes:

  • Refresh Object Repository: If the UI changes, re-spy objects.
  • Add Delays: Use Windows.delay(2) if elements load dynamically.
  • Check for Updates: Some Windows apps (e.g., Java Swing) require accessibility fixes from the development team
1 Like

We tried to test using both Windows recorder as well as Native windows recorder .
But we are not able to identify the unique object for the login fields.

For both User and password field we are getting Pane object without any xpath or name .
There is no information on TestObject element

I would approach the exercise as a POC rather than assuming that Katalon will be able to automate it. The approach to locators makes things significantly slower than web automation and it may be that the app just won’t work.
I had an app that crashed WinAppDriver and therefore any tool that tried to view the app - this went for Inspect.exe as well as Katalon. Gave up in the end, it was just cheaper to run tests manually.
Note that Katalon 10.x doesn’t currently support Windows apps.

Yeah, Windows automation is a challenge nowadays

Hi Dinesh,

We tried your solution and successfully retrieved the AutomationId for the password field using inspect.exe. However, we are unable to use it with the following approach:

groovy

CopyEdit

// Attempt to use AutomationId
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password", 
    [:], 
    ["AutomationId": "txtPassword"]) // Replace with actual AutomationId

Since Katalon Studio does not support setText with these arguments, this method does not work.

We also attempted to use AutomationId in XPath, but encountered the following error:

pgsql

CopyEdit

Caused by: org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters.
(WARNING: The server did not provide any stacktrace information)
At object: 'Object Repository/password'

XPath used:

xpath=
//Pane[@AutomationId=‘txtPassword’]

Could you please guide us on how to correctly use AutomationId as an XPath locator to find the element on the screen?

To resolve the AutomationId XPath issue in Katalon Studio for Windows applications:

Issue 1: Incorrect XPath Syntax for AutomationId

The AutomationId property must be referenced using Katalon’s Windows test object syntax (not direct XPath).

  1. Use the automationId Attribute
    XPath requires the exact attribute exposed by the app. For Windows apps using UI Automation, the attribute is automationId (lowercase “i”):
//*[@automationId='txtPassword']
  • No “Pane” restriction (use * to match any element type with that ID).
  1. Create a Defined Test Object
    Don’t use raw XPath in scripts. Define it in the Object Repository:
  • In Katalon Studio:
    1. Right-click the object in the Repository → New → Windows Test Object.
    2. Set Locator to XPath.
    3. Paste your XPath: //*[@automationId='txtPassword'].
  1. Wait for Element & Use the Object
// Wait for the password field to exist
Windows.waitForElementPresent(findWindowsObject("Object Repository/PasswordField"), 20)

// Set text using the predefined object
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password")

Issue 2: Script Argument Mismatch

The original code attempted to pass AutomationId as a runtime parameter, which is not supported by Windows.setText(). Instead:

Use AutomationId in Test Object Properties

  • When creating/editing the test object in the Repository, add automationId as a property:
  • Katalon will automatically prioritize AutomationId for identification.

Example Workflow

  1. Identify with Inspect.exe:
    Confirm the AutomationId="txtPassword" exists and is unique.
  2. Object Repository Setup:
//*[@automationId='txtPassword']
  1. Script:
import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows

// Wait for login window
Windows.waitForElementPresent(findWindowsObject("Object Repository/LoginWindow"), 10)

// Set password using AutomationId-based object
Windows.setText(findWindowsObject("Object Repository/PasswordField"), "your_password")

Troubleshooting

  • Element Not Found Error:
    • Confirm the XPath matches Inspect.exe’s hierarchy (e.g., nested containers may require absolute paths):
//Pane[@Name='LoginPanel']//*[@automationId='txtPassword']
  • Add delays if the element loads dynamically:
Windows.delay(2)
  • Alternative for Legacy Apps:
    If automationId isn’t exposed, use RuntimeId (unique per session):
//*[@runtimeId='42.199356.4.1']

Why UFT Works But Katalon Struggles

UFT often uses property-based identification (e.g., nativeClass), while Katalon relies on XPath or preconfigured object properties. Always map UFT-identified attributes to Katalon’s syntax.

Key Takeaway: Define AutomationId in the Object Repository, not inline in scripts.

Hi Dineshh,

We tried using the following XPath approach, where @automationId is unique:

xpath=

//*[@automationId='txtPassword']

However, we encountered the following issue:

Unable to set text for object 'Object Repository/password'
(Root cause: org.openqa.selenium.TimeoutException: Expected condition failed: 
waiting for com.kms.katalon.core.windows.keyword.helper.WindowsActionHelper$1@510da778 
(tried for 30 second(s) with 50 milliseconds interval))

We also attempted to refine the locator strategy by adding additional unique properties in XPath, but we are still unable to set the text successfully.

even tried using delay which you suggested in the above chat.

Could you please advise on the correct approach to use automationId in XPath for identifying the element and setting text in Katalon Studio?

Looking forward to your guidance.

To resolve the TimeoutException and successfully use automationId in XPath, follow these steps:

:warning: Key Issues Identified:

  1. Hierarchy/Context Issues: The element exists in a container (e.g., Pane, Window) not referenced in XPath.
  2. Element Not Interactable: The element is present but not enabled/visible when the script runs.
  3. Static Delays Insufficient: Delays alone won’t address dynamic UI loading; explicit waits are required.

Step 1: Verify Full Element Hierarchy

Use Inspect.exe to confirm the element’s parent-child relationship.
Example Structure:

Window (Parent)
  → Pane[@Name="LoginPanel"]
    → Edit[@automationId="txtPassword"]  // Target element

Step 2: Refine XPath with Parent Context

If nested, include parent containers to avoid ambiguity:

//Pane[@Name='LoginPanel']//*[@automationId='txtPassword']  
//Window//Edit[@automationId='txtPassword']  // Explicit control type (`Edit`)

Step 3: Create a Robust Test Object

Avoid raw XPath in scripts; define a test object in the repository:

  1. Object Repository → New → Windows Test Object.
  2. Add Property:
  • Name: automationId (lowercase “i”)
  • Value: txtPassword
  • No need for XPath!

Step 4: Script with Explicit Waits and Focus

import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows

// Wait for parent window first (critical!)
Windows.waitForElementPresent(findWindowsObject("LoginWindow"), 30)

// Optional: Focus parent container
Windows.focus(findWindowsObject("LoginWindow"))

// Wait for password field to be interactable (not just present!)
Windows.waitForElementClickable(findWindowsObject("PasswordField"), 30)

// Set text using the test object
Windows.setText(findWindowsObject("PasswordField"), "your_password")

Step 5: Advanced Troubleshooting

If the error persists:

A. Check if the Element is Enabled

def element = Windows.findElement(findWindowsObject("PasswordField"))
assert Windows.elementEnabled(element) == true

B. Use Absolute XPath Temporarily

Extract the full path from Inspect.exe (e.g., for debugging):

//Window[@Name='Login']/Pane[@automationId='mainPanel']/Edit[@automationId='txtPassword']

C. RuntimeId Fallback

If automationId is unreliable (e.g., dynamic), use runtimeId from Inspect.exe:

//*[@runtimeId='42.12345.4.1']

:magnifying_glass_tilted_left: Why This Happens:

  • TimeoutException: The element exists but is in a container not yet loaded or focused.
  • XPath Flakiness: Parent containers may change dynamically, breaking generic XPaths like //*[@automationId=...].

:white_check_mark: Validation Checklist

Scenario Solution
XPath works in Inspect.exe Use parent-child hierarchy in XPath.
Element not interactable Use waitForElementClickable(), not waitForElementPresent().
Delays not working Replace static delay() with explicit waits.

Final Script Example

import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows

// 1. Wait for parent window
Windows.waitForElementPresent(findWindowsObject("LoginWindow"), 30)

// 2. Focus parent container (critical for nested elements)
Windows.focus(findWindowsObject("LoginWindow"))

// 3. Wait for password field to be interactable
Windows.waitForElementClickable(findWindowsObject("PasswordField"), 30)

// 4. Set text
Windows.setText(findWindowsObject("PasswordField"), "your_password")

Define automationId in test objects, focus parent containers, and prioritize waitForElementClickable() over static delays. If issues persist, share a screenshot of the element hierarchy from Inspect.exe