October 2018
Intermediate to advanced
192 pages
5h 12m
English
The Receiver will be an abstract class called AActionKeyword that will contain empty method bodies that will be placeholders to perform the work by invoking Selenium WebDriver methods such as click(). Once again, we use an abstract class that has dummy implemented method bodies. Each individual concrete class will only implement the required methods.
We start with the abstract class with the unimplemented methods:
public abstract class AActionKeyword extends TestBase { public AActionKeyword() throws IOException, FilloException { super(); } public void clickElement(String x) { } public WebDriver navigate(WebDriver driver2, String url) { return null; } public WebDriver openBrowser(List<String> browsers) { return null; } public void ...Read now
Unlock full access