We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometimes Patrol is too fast. It would be great to have a config setting for a static delay before the tap() action. There 2 reasons for this:
PatrolTesterConfig would be great for new parameter
const PatrolTesterConfig({ this.existsTimeout = const Duration(seconds: 10), this.visibleTimeout = const Duration(seconds: 10), this.settleTimeout = const Duration(seconds: 10), this.settlePolicy = SettlePolicy.trySettle, this.dragDuration = const Duration(milliseconds: 100), this.settleBetweenScrollsTimeout = const Duration(seconds: 5), this.tapTimeout = const Duration(milliseconds: 0), });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Use case
Sometimes Patrol is too fast. It would be great to have a config setting for a static delay before the tap() action. There 2 reasons for this:
Proposal
PatrolTesterConfig would be great for new parameter
const PatrolTesterConfig({
this.existsTimeout = const Duration(seconds: 10),
this.visibleTimeout = const Duration(seconds: 10),
this.settleTimeout = const Duration(seconds: 10),
this.settlePolicy = SettlePolicy.trySettle,
this.dragDuration = const Duration(milliseconds: 100),
this.settleBetweenScrollsTimeout = const Duration(seconds: 5),
this.tapTimeout = const Duration(milliseconds: 0),
});
The text was updated successfully, but these errors were encountered: