scroll_until_visible
Scrolling a scrollable Flutter widget to bring a target widget into view, using configurable step deltas and timeouts, so it can be interacted with next.
Instructions
Scrolls a scrollable widget until a target widget is visible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dx | No | Horizontal scroll delta per step (default 0.0) | |
| dy | No | Vertical scroll delta per step (default -50.0) | |
| target | No | Target string (e.g. '#loginBtn', 'text="Submit"', 'type="ElevatedButton"', 'semanticsLabel="Username"') | |
| timeout_ms | No | Implicit wait timeout in milliseconds before failing | |
| scrollable_target | No | Optional target string for the scrollable container |