Create the following packages in src/main/java:
- org.packt.invokers
- org.packt.receivers
- org.packt.command
- org.packt.client
- org.packt.testbase
In the org.packt.testbase package, create our TestBase class. This will serve as the base class for all of our classes.
This base class has methods for the following:
- Sendkeys
- Sendkeys using JavascriptExecutor
- Double click
- Context click
You can add additional methods to this test base and the changes will percolate throughout the framework since all of our classes will extend the test base. The following code shows the declarations, the various methods for sending different keystrokes, and clicking elements:
public class TestBase {
public static WebDriver driver = null;
protected static Logger log = null;
protected static Utilities util = null;
protected static Actions actions = null;
protected static...