I got this error message while trying to click on a specific collapsible button.
element click intercepted: Element Filters is not clickable at point (522, 265). Other element would receive the click:
...
This button has this:
<button class="action-default _active" data-action="grid-filter-expand" data-bind="css: {_active: hasVisible() && $collapsible.opened()}, disable: !hasVisible(), toggleCollapsible, i18n: 'Filters'">Filters</button>
It's XPATH:
//*[@id="container"]/div/div[2]/div[1]/div[3]/div/button
I did this:
WebDriverWait wait6 = new WebDriverWait(driver,Duration.ofSeconds(10));
WebElement elementProd44 = wait6.until(ExpectedConditions.elementToBeClickable(By.xpath("//*[@id=\"container\"]/div/div[2]/div[1]/div[3]/div/button")));
elementProd44.click();
What am i doing wrong?
Note: i cannot share the URL because it is hidden.