Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions test/helpers/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,7 @@ export async function typeText(testId: string, text: string) {
}

export async function addSendTag(tag: string) {
if (driver.isIOS) {
await tap('SendConfirmToggleDetails');
}
await tap('SendConfirmToggleDetails');
await tap('TagsAddSend');
await typeText('TagInputSend', tag);
await tap('SendTagsSubmit');
Expand Down Expand Up @@ -1359,9 +1357,7 @@ export async function typeRecipientInput(
}

export async function editRecipientAddress(address: string) {
if (driver.isIOS) {
await tap('SendConfirmToggleDetails');
}
await tap('SendConfirmToggleDetails');
await tap('ReviewUri');
await sleep(2000);
await elementById('RecipientInput').waitForDisplayed();
Expand Down