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 3164088 commit a4186d6Copy full SHA for a4186d6
1 file changed
WordPress/src/androidTest/java/org/wordpress/android/e2e/pages/ContactSupportScreen.java
@@ -40,8 +40,6 @@ 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);
@@ -70,7 +68,7 @@ public HelpAndSupportScreen goBackAndDeleteUnsentMessageIfNeeded() {
70
68
71
69
// Assertions:
72
public ContactSupportScreen assertContactSupportScreenLoaded() {
73
- waitForElementToBeDisplayed(inputTextField);
+ waitForElementToBeDisplayed(textInput);
74
textInput.check(matches(isCompletelyDisplayed()));
75
sendButton.check(matches(isCompletelyDisplayed()));
76
return this;
0 commit comments