in packages/web_drivers/lib/chrome_driver_installer.dart [197:208]
static String driverName() {
if (io.Platform.isMacOS) {
return 'chromedriver_mac64.zip';
} else if (io.Platform.isLinux) {
return 'chromedriver_linux64.zip';
} else if (io.Platform.isWindows) {
return 'chromedriver_win32.zip';
} else {
throw UnimplementedError('Automated testing not supported on this OS.'
'Platform name: ${io.Platform.operatingSystem}');
}
}