Skip to content

Commit

Permalink
Added warning about unsupported commands in certain WebDrivers
Browse files Browse the repository at this point in the history
Since not all WebDriver implementations support the commands issued by Selenium's Actions class, there should be a note to point users in the right direction when issues occure.
  • Loading branch information
slu-it committed Nov 11, 2016
1 parent 4c4ae2a commit 497666f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import java.util.function.BiFunction;

import org.openqa.selenium.TimeoutException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;

Expand All @@ -20,6 +21,10 @@

/**
* The default implementation of a {@link MouseDriver}.
* <p>
* <b>Note:</b> Methods provided by this class depend on Selenium's {@link Actions} class.
* There are some {@link WebDriver} implementation (e.g. v3.0.1 of the Marionette-based FirefoxDriver)
* which do not support the commands issued by {@link Actions}!
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@

/**
* This class is used to perform a variety of mouse related actions.
* <p>
* <b>Note:</b> Methods provided by this class depend on Selenium's {@link Actions} class.
* There are some {@link WebDriver} implementation (e.g. v3.0.1 of the Marionette-based FirefoxDriver)
* which do not support the commands issued by {@link Actions}!
*
* @see OnPageFragment
* @see Sequence
Expand Down

0 comments on commit 497666f

Please sign in to comment.