Unable to click on object Caused by: element click intercepted Other element would receive the click

Please assist. I get the error “element click intercepted” when try to select the value from dropdown. Found related topic with advice to add WebUI.waitForElementClickable keyword before the Click action. I added it. And WebUI.waitForElementClickable is successfully passed, but the next step - Click on this element fails with the error above.

This’s my HTML

And my locator. I tried Custom attributes, position, neighbor and full XPath - nothing works

1 Like

PLS try using WebUI.waitForElementVisible keyword instead of waitForElementClickable.

It doesn’t help. Still the same ‘Wait For Element Visible’ function is passed (says Object is visible). And then “Unable to click on object element not interactable”

I have MacOs 15.3 and Katalon Studio 10.1.0

Can you try and see if either of the below make a difference?

import org.openqa.selenium.WebElement as WebElement
import org.openqa.selenium.JavascriptExecutor as JavascriptExecutor
import com.kms.katalon.core.webui.common.WebUiCommonHelper as WebHelper


WebElement element = WebHelper.findWebElement(findTestObject('...'), 10)
WebUI.executeJavaScript("arguments[0].click()", Arrays.asList(element))

or

WebUI.enhancedClick(findTestObject('...'))

I played with your situation some and perhaps you can use the below pathway to check on your object and then click on the second one:

import org.openqa.selenium.WebElement as WebElement
import com.kms.katalon.core.webui.driver.DriverFactory as DriverFactory

WebDriver driver = DriverFactory.getWebDriver();

List<WebElement> listOptions = driver.findElements(By.xpath('//div[starts-with(@id,"rc_select_) and contains(@id,"_list")]/following-sibling::div[1]//div[@class="rc-virtual-list-holder-inner"]/div/div'));

WebUI.verifyMatch(listOptions.get(0).getText(), "Areyeng M Mphahlele", false)
WebUI.verifyMatch(listOptions.get(1).getText(), "ashley muleya", false)
WebUI.verifyMatch(listOptions.get(2).getText(), "dsfds dfds", false)
WebUI.verifyMatch(listOptions.get(3).getText(), "faith Sebothoma", false)
WebUI.verifyMatch(listOptions.get(4).getText(), "Gwen.N Baloyi", false)
WebUI.verifyMatch(listOptions.get(5).getText(), "Hit not man test Test15", false)
WebUI.verifyMatch(listOptions.get(6).getText(), "Hlayisani Mazuze", false)
WebUI.verifyMatch(listOptions.get(7).getText(), "HlayiTest Mazuze", false)
WebUI.verifyMatch(listOptions.get(8).getText(), "holy mary", false)

listOptions.get(1).click();

You can check the pathway I use to see if it returns 9 objects, one for each of your items in the list. Hit the F12 key and then choose, “Open Dev-Tools”. Click into the HTML area that should open, and then hit CTRL + F to open the Find textbox. Copy and paste the pathway I used above into the Find box and you should see 1 of 9 to the right of the Find box.

Another thing you should do to ensure you are on the correct object is to use the Dev-Tools selector (the top left icon) or hit CTRL + SHIFT + C and then click on your object. Look on the side scroll bar to see if it moves between different areas of your page when you select your object like you did to get the image above and where the Dev-Tools selector indicates.

thanks
I tried this JS click

def clickUsingJS(TestObject to, int timeout) {
		WebDriver driver = DriverFactory.getWebDriver()
		WebElement element = WebUiCommonHelper.findWebElement(to, timeout)
		JavascriptExecutor executor = ((driver) as JavascriptExecutor)
		executor.executeScript('arguments[0].click()', element)
	}

it doesn’t click on the required element, though the test passed successfully (this field isn’t mandatory)

Hello there, this is a common challenge in WebUI automation world.

As you can se, the error messages explains that other elemente is receiving the click event. Sometime a presceding element in the HTML take that click and in unable to propagate through the element you expect.

In your case, I can see a similar DIV element that contains the DIV element you want to click, Have you tried to click on that element intead of the nested DIV?

the Xpath locator should be very similar. //div[@title=‘ashley muleya’].

tried - doesn’t work

it fails No signature of method: static org.openqa.selenium.By.XPath() is applicable for argument types: (String) values: [//div[starts-with(@id,"rc_select_) and contains(@id,"_list")]/following-sibling::div[1]//div[@class="rc-virtual-list-holder-inner"]/div/div] Possible solutions: xpath(java.lang.String), name(java.lang.String), with(groovy.lang.Closure), each(groovy.lang.Closure), getAt(java.lang.String), wait()

As the pathway is to be a String and since I already use double quotes within it, you need to have a single quote at the beginning and another at the end, like:

driver.findElement(By.xpath('//div[starts-with(@id,"rc_select_) and contains(@id,"_list")]/following-sibling::div[1]//div[@class="rc-virtual-list-holder-inner"]/div/div'))