Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
increse wait time for long press
  • Loading branch information
jostnes committed May 23, 2022
commit 36adacdf183ed04c05eed89b28711a7b11655666
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ const longPressMiddleOfElement = async ( driver, element ) => {
const y = location.y + size.height / 2;
action.press( { x, y } );
// Setting to wait a bit longer because this is failing more frequently on the CI
action.wait( 3500 );
action.wait( 5000 );
action.release();
await action.perform();
};
Expand Down