-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
74 lines (61 loc) · 1.9 KB
/
Main.java
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package behavioral.mediator;
public class Main {
public static void println(String x) {
System.out.println(x);
System.out.flush();
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
public static void errPrintln(String x) {
System.err.println(x);
System.err.flush();
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
public static void println() {
println("");
}
public static void main(String[] args) throws InterruptedException {
GuiMediator guiMediator;
guiMediator = new GuiMediator();
println(guiMediator.toString());
println();
Thread.sleep(1000);
guiMediator.getLogin().doLogin();
println(guiMediator.toString());
println();
Thread.sleep(1000);
guiMediator.getDialog().clickOk();
println(guiMediator.toString());
println();
Thread.sleep(1000);
guiMediator.getLogin().setUsernameTextBox("alice");
guiMediator.getLogin().setPasswordTextBox("abc");
guiMediator.getLogin().doLogin();
println(guiMediator.toString());
println();
Thread.sleep(1000);
guiMediator.getDialog().clickOk();
println(guiMediator.toString());
println();
Thread.sleep(1000);
try {
guiMediator.getDialog().clickOk();
} catch (RuntimeException runtimeException) {
errPrintln("you can not do any action with invisible component");
} finally {
println();
Thread.sleep(1000);
}
guiMediator.getLogin().setUsernameTextBox("alice");
guiMediator.getLogin().setPasswordTextBox("123");
guiMediator.getLogin().doLogin();
println(guiMediator.toString());
println();
Thread.sleep(1000);
}
}