Java - WebDriverWait работает не корректно, не ждет появления элемента, что делать?
что делать, если WebDriverWait не ждет появления элемента ни с каким из Conditions?
Кусок:
WebElement DroppedMenu = (new WebDriverWait(driver, Duration.ofSeconds(20))
.until(ExpectedConditions.elementToBeClickable(By.xpath("//button[@class='filter-button circle']"))));
Пробовала и Visibility, и Presence, и Clickable - не работает.
Причем функция работает, т.к. нет конфликтующих ошибок. Но в консоли по итогу все стопорится на этом:
element click intercepted: Element <button type="button" class="filter-button circle"> is not
clickable at point (988, 102).
Other element would receive the click: <div class="loadingFullScreen" id="loader">
p.s. jdk - 14; selenium version 4.1.3