import com.goyourfly.jfunk.Page;
import com.goyourfly.jfunk.PageEntry;
import com.goyourfly.jfunk.action.SetTextAction;
import com.goyourfly.jfunk.core.JFunk;
public class JFunkExample {
public static void main(String[] args) {
JFunk jFunk = new JFunk();
PageEntry pageEntry = new PageEntry("https://example.com/login");
jFunk.addPage("login", pageEntry);
jFunk.addCase(() -> {
Page page = jFunk.getPage("login");
page.input(new SetTextAction("username", "johndoe@example.com"));
page.input(new SetTextAction("password", "password"));
page.click("submit");
page.assertExist("#dashboard");
});
jFunk.run();
}
}