I have installed Opentest on my Ubuntu 16.04 LTS, and want to keep track of my automation code pass/fail success rate. I am able to connect to the localhost server, but am confused after that. I have a java file that I have successfully created that automates a log in function.
I have done my research and found this for the example, but can't seem to find where this package is.
package org.getopentest.selenium;
import org.getopentest.selenium.core.SeleniumTestAction;
import org.getopentest.annotations.TestActionArgument;
import org.getopentest.annotations.TestActionClass;
import org.getopentest.annotations.Type;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
Other Examples:https://github.com/mcdcorp/opentest/tree/master/actor/selenium/src/main/java/org/getopentest/selenium
I can't seem to find where that package is and would like to continue coding in Java versus switching to YAML. If you have any ideas on how I can go about getting my automaton onto Opentest please comment. Thank you.