import static com.automationjfunk.core.JFunk.*;
public class JFunkTest {
@Test
public void testLogin() {
open("https://example.com");
fill("#username").with("admin");
fill("#password").with("password");
click("#loginButton");
assertText("#welcomeMessage").isEqualTo("Welcome, Admin!");
}
}