Open
Description
Currently, all requests are sent from as a device which supports Audio surface only. But, many actions support multiple surfaces and send different responses depending on the surface.
At least, I think that this tool should support a screen surface. For example, if developers can specify whether want to support a screen surface or not as like the following, we will be able to cover more test cases/conditions.
const action = new ActionsOnGoogleAva(...);
...
action.screenSurfaceSupport = true; // Default value is false
action.start(...);