auto
auto
-a simpler flutter ui automation test solution.
- no need to write any code
- recording test scripts is very simple
- multi-platform support
- pixel-level playback
- remote recording and playback
- …
getting started
1.add dependency
dependencies:
auto: latest-version
2.initialize uiautomator
import 'package:auto/auto.dart';
void main() {
uiautomator.ensureinitialized(); //make sure this line is at the top of the code
runapp(uiautomatorarea(child: myapp()));
}
for more detailed configuration, please see the example project
ide installation
see: auto ide
Comments are closed.