Open fury3698 opened 9 months ago
can you make sure you are using appium-dashboard version 2.0.3
?
can you make sure you are using appium-dashboard version
2.0.3
?
I am using version 2.0.3 and noticed that "dashboard:enableLiveVideo" "dashboard:enableVideoRecording" do not work if you run the appium server with two plugins at once --use-plugins=device-farm,appium-dashboard, if you run only with appium-dashboard, then the capability changes work.
Hello.
Thank you for the great dash board.
Due to the limited storage, I do not want to record the video, but just stream it.
Here is my code, but it does not work.
def setUp(self) -> None: super(TestAppium, self).setUp()
options = AppiumOptions() options.load_capabilities({ "platformName": "android", "appium:automationName": "uiautomator2", "appium:ensureWebviewsHavePages": True, "appium:nativeWebScreenshot": True, "appium:newCommandTimeout": 180, "appium:connectHardwareKeyboard": True, "appium:udid": selected_device, "appium:eventTimings": True, "appium:printPageSourceOnFindFailure": True, "appium:appWaitForLaunch": False, "noReset": True, "takesScreenshot": False, "nativeWebScreenshot": False, "dashboard:enableVideoRecording": False,
}) self.driver1 = webdriver.Remote("http://192.168.212.110:4723", options=options)
Any advice plz?
Thank you.