From 3ef1ebc002b06af65fc2705f7a9dfc318a161c34 Mon Sep 17 00:00:00 2001 From: Alexei Barantsev Date: Wed, 14 May 2014 22:45:41 +0400 Subject: [PATCH] IE < 10 --- .../openqa/selenium/interactions/CombinedInputActionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/client/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java b/java/client/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java index 58ed100ff341a..c51dfa52b0c8d 100644 --- a/java/client/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java +++ b/java/client/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java @@ -239,7 +239,7 @@ public void testClickAfterMoveToAnElementWithAnOffsetShouldUseLastMousePosition( int x; int y; - if (isInternetExplorer(driver) && getIEVersion(driver) < 9) { + if (isInternetExplorer(driver) && getIEVersion(driver) < 10) { x = Integer.parseInt(driver.findElement(By.id("clientX")).getText()); y = Integer.parseInt(driver.findElement(By.id("clientY")).getText()); } else {