Is it possible to get a list of the installed browsers using dart:io
?
More specifically, I would want to have a variable
List installedBrowsers
in my grinder file, so that my grinder will work independently of the OS and installed browsers.
@DefaultTask('Test')
test() =>
new TestRunner().test(
files: myFile,
platformSelector: installedBrowsers);