8
8
public class AndroidApp implements ExtendedApp {
9
9
10
10
public static String ANDROID_DEFAULT_WIDGET_LOCATOR = "SOME_ANDROID_DEFAULT_LOCATOR" ;
11
- public static String ANDROID_SELENDROID_WIDGET_LOCATOR = "SOME_SELENDROID_DEFAULT_LOCATOR" ;
12
11
13
12
public static String ANDROID_EXTERNALLY_DEFINED_WIDGET_LOCATOR = "SOME_ANDROID_EXTERNALLY_DEFINED_LOCATOR" ;
14
- public static String SELENDROID_EXTERNALLY_DEFINED_WIDGET_LOCATOR = "SOME_SELENDROID_EXTERNALLY_DEFINED_LOCATOR" ;
15
13
16
14
@ AndroidFindBy (uiAutomator = "SOME_ANDROID_DEFAULT_LOCATOR" )
17
15
private DefaultAndroidWidget singleAndroidWidget ;
@@ -20,35 +18,35 @@ public class AndroidApp implements ExtendedApp {
20
18
private List <DefaultAndroidWidget > multipleAndroidWidgets ;
21
19
22
20
/**
23
- * This class is annotated by {@link AndroidFindBy} and @{@link SelendroidFindBy}.
21
+ * This class is annotated by {@link AndroidFindBy}
24
22
* This field was added to check that locator is created correctly according to current platform
25
23
* and current automation.
26
24
*/
27
25
private AnnotatedAndroidWidget singleAnnotatedAndroidWidget ;
28
26
29
27
/**
30
- * This class is annotated by {@link AndroidFindBy} and @{@link SelendroidFindBy}.
28
+ * This class is annotated by {@link AndroidFindBy}
31
29
* This field was added to check that locator is created correctly according to current platform
32
30
* and current automation.
33
31
*/
34
32
private List <AnnotatedAndroidWidget > multipleAnnotatedAndroidWidgets ;
35
33
36
34
/**
37
- * This class is not annotated by {@link AndroidFindBy} and {@link SelendroidFindBy}.
35
+ * This class is not annotated by {@link AndroidFindBy}
38
36
* But the superclass is annotated by these annotations. This field was added to check that locator is
39
37
* created correctly according to current platform and current automation.
40
38
*/
41
39
private ExtendedAndroidWidget singleExtendedAndroidWidget ;
42
40
43
41
/**
44
- * This class is not annotated by {@link AndroidFindBy} and {@link SelendroidFindBy}.
42
+ * This class is not annotated by {@link AndroidFindBy}
45
43
* But the superclass is annotated by these annotations. This field was added to check that locator is
46
44
* created correctly according to current platform and current automation.
47
45
*/
48
46
private List <ExtendedAndroidWidget > multipleExtendedAndroidWidgets ;
49
47
50
48
/**
51
- * The superclass is annotated by {@link AndroidFindBy} and {@link SelendroidFindBy}.
49
+ * The superclass is annotated by {@link AndroidFindBy}
52
50
* However there is the field which is annotated by this annotations.
53
51
* This field was added to check that locator is
54
52
* created correctly according to current platform and current automation and
@@ -58,7 +56,7 @@ public class AndroidApp implements ExtendedApp {
58
56
private ExtendedAndroidWidget singleOverriddenAndroidWidget ;
59
57
60
58
/**
61
- * The superclass is annotated by {@link AndroidFindBy} and {@link SelendroidFindBy}.
59
+ * The superclass is annotated by {@link AndroidFindBy}
62
60
* However there is the field which is annotated by this annotations.
63
61
* This field was added to check that locator is
64
62
* created correctly according to current platform and current automation and
0 commit comments