Reputation: 1
I have my appium setup on Windows virtual machine and since Virtual Box do not support nested virtualization I created an Android emulator on Virtual Box and connected the two virtual machines. I am able to launch the app on virtual android emulator.
So my issue is that uiautomatorviewer
is unable to capture the screenshot. Error message says Error taking device screenshot: EOF
. Please help me with the issue.
I checked via adb devices
, that two devices are connected to each other. Thanks.
Upvotes: 0
Views: 1247
Reputation: 454
Stop Appium server and kill & restart adb server.
adb kill-server
adb start-server
then try to get the screenshot or identify the DOM elements. Hope it helps!
Upvotes: 1