We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd72be commit 3164088Copy full SHA for 3164088
1 file changed
WordPress/src/androidTest/java/org/wordpress/android/e2e/pages/ContactSupportScreen.java
@@ -40,6 +40,8 @@ public class ContactSupportScreen {
40
)
41
));
42
43
+ static ViewInteraction inputTextField = onView(withId(R.id.message_composer_input_text));
44
+
45
// Actions:
46
public ContactSupportScreen setMessageText(String text) {
47
populateTextField(textInput, text);
@@ -68,7 +70,7 @@ public HelpAndSupportScreen goBackAndDeleteUnsentMessageIfNeeded() {
68
70
69
71
// Assertions:
72
public ContactSupportScreen assertContactSupportScreenLoaded() {
- waitForElementToBeDisplayed(R.id.message_composer_input_text);
73
+ waitForElementToBeDisplayed(inputTextField);
74
textInput.check(matches(isCompletelyDisplayed()));
75
sendButton.check(matches(isCompletelyDisplayed()));
76
return this;
0 commit comments