Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Aug 11, 2023
1 parent f037c59 commit 15b8667
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import static com.alphawallet.app.steps.Steps.input;
import static com.alphawallet.app.steps.Steps.watchWalletWithENS;
import static com.alphawallet.app.util.Helper.click;
import static com.alphawallet.app.util.Helper.clickMadly;

import com.alphawallet.app.util.Helper;

Expand Down Expand Up @@ -53,13 +54,13 @@ public void should_show_custom_name_instead_of_ENS_name()

private void renameWalletTo(String name)
{
click(withId(R.id.action_my_wallet));
clickMadly(withId(R.id.action_my_wallet));
Helper.wait(1);
click(withSubstring("Rename this Wallet"));
clickMadly(withSubstring("Rename this Wallet"));
Helper.wait(1);
onView(withId(R.id.edit_text)).perform(replaceText(name));
input(R.id.input_name, name);
click(withText("Save Name"));
clickMadly(withText("Save Name"));
Helper.wait(2);
}

Expand Down

0 comments on commit 15b8667

Please sign in to comment.