Отправляет email-рассылки с помощью сервиса Sendsay
  Все выпуски  

Не работает doubleClick



Software-Testing.Ru - портал тестировщиков  

Новые темы форума тестировщиков


Не работает doubleClick
2016-06-16 15:07

1) Обновил браузер на 45.0 файрфокс

2) Обновил selenium-firefox-driver:2.53.0

3) Запускаю тест

Тест падает, где должен делать doubleClick, 

Собственно пишет:

 

java.lang.RuntimeException: org.openqa.selenium.WebDriverException: Element is not clickable at point (959, 371). Other element would receive the click: <div title="" style="white-space: nowrap; width: 100px;" class="dots">PROJECT-1466078170324</div> (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 11 milliseconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
 
 
Подскажите как решить данную проблему?
 
 
 
 
Код doubleClick:
public WebDriverUtil doubleClick(final WebElement element) {
        try {
            executeActionWithAttempt(6, new Action<Object>() {
                @Override
                public Object perform() throws Exception {
                    new Actions(getWebDriver()).doubleClick(element).build().perform();
                    return null;
                }
            }, StaleElementReferenceException.class);
            return this;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
 
 
PS: Заметил что на selenium-firefox-driver:2.48 doubleClick работает прекрасно, но 2.48 не работает с файрфокс 45!


© 2010 | Software-Testing.Ru


В избранное