-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebUI.java
More file actions
32 lines (24 loc) · 794 Bytes
/
WebUI.java
File metadata and controls
32 lines (24 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package StaticJava;
public class WebUI {
public static String url = "https://crm.anhtester.com/admin/authentication";
public static String email = "admin@example.com";
public static String password = "123456";
public static void openURL(String url) {
System.out.println(url);
}
public static void clickElement(String elementName) {
System.out.println("Click element: " + elementName);
}
public static void setText(String text) {
System.out.println("Set text: " + text);
}
public static String getElementText(String elementName){
return "text";
}
public static void main(String[] args) {
openURL(url);
setText(email);
setText(password);
clickElement("Login button");
}
}