Unable to Drag and Drop Test Objects into Test Case (Script Mode)

User information
In case of License issue, please provide : accountID, lidaza@eastwestbanker.com

*Summary
Unable to drag and drop Test Objects from the Object Repository into a Test Case when the Test Case is in Script mode. The drag-and-drop action produces no result.

*Steps to reproduce

  1. Open a Test Case
  2. Switch the Test Case to Script mode.
  3. Open the Object Repository panel.
  4. Select a Test Object (e.g. Object Repository/Login/Btn_login).
  5. Drag the object from the Object Repository panel and drop it into the script editor.

*Expected Results

The Test Object reference should be automatically inserted into the script at the drop

*Actual Results

Nothing is inserted into the script. The drag-and-drop has no effect in Script mode.

*Screenshots / Videos
(please attach screenshots or videos if necessary to reproduce the issue)

*Blocker?
Yes

Number of affected users?
windows user


*Operating System
e.g. Windows 11

*Katalon Studio version
e.g. version 11.3.0

*Katalon Studio logs
no log

Environment (for Web Testing)

Environment (for Mobile Testing)

hi @lidaza

can you share with us which Katalon v11.3.0? the v11.3.0 or v11.3.0 - Copilot?

Workarounds (Choose One)

:white_check_mark: Option 1: Delete Explorer Preference File (Recommended)

This fixes the issue for most users:

  1. Close Katalon Studio

  2. Navigate to:

    C:\Program Files\Katalon\Katalon_x64\config\.metadata\.plugins\org.eclipse.core.runtime\.settings

  3. Delete the file: com.kms.katalon.composer.explorer.prefs

  4. Restart Katalon Studio

  5. Test drag-and-drop again

:white_check_mark: Option 2: Manually Type findTestObject() (Quick Alternative)

If you don’t want to delete files, just copy-paste the object reference:

// Instead of dragging, type:
WebUI.click(findTestObject('Object Repository/Login/Btn_login'))

// Or for API:
def response = WS.sendRequest(findTestObject('Object Repository/LoginRequest'))

:white_check_mark: Option 3: Check “Link the Selected Part” Setting

Sometimes the Tests Explorer setting blocks drag-and-drop:

  1. Open Tests Explorer

  2. Look for “Link the selected part” checkbox

  3. Make sure it’s checked (not unchecked)

  4. Try dragging again

Why This Happens

This is a Eclipse platform regression in Katalon’s underlying IDE components. The drag-and-drop handler in Script Mode isn’t properly registered, so the insertion fails silently


Quick fix right now: Use Option 1 (delete the prefs file) — it’s the only workaround that actually restores drag-and-drop functionality permanently .

this version

can you let us know if the issue still persists. We have tried to reproduce the issue and it seems to work okay.

@lidaza can you confirm if issue still occurs?