mmarquee.automation.controls.DocumentPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-automation Show documentation
Show all versions of ui-automation Show documentation
A Java library that wraps the MS UIAutomation library.
package mmarquee.automation.controls;
/**
* Represents a page in a document - i.e. a Word document.
*
* @author Mark Humphreys
* Date 28/01/2017.
*
* It seems to be a specific set of custom elements.
*/
public final class DocumentPage extends Custom {
/**
* Constructor for the DocumentPage.
*
* @param builder The builder
*/
public DocumentPage(final ElementBuilder builder) {
super(builder);
}
}