使用 Appium,每当执行 adb_shell 命令时出现错误提示potentially insecure feature 'adb shell' has not been enabled
***我尝试通过命令行运行appium appium --relaxed-security
,它可以工作。我尝试检查此链接
使用 Appium,每当执行 adb_shell 命令时出现错误提示potentially insecure feature 'adb shell' has not been enabled
***我尝试通过命令行运行appium appium --relaxed-security
,它可以工作。我尝试检查此链接
根据安全服务器参数文档,您必须使用--relaxed-security
或--allow-insecure=adb_shell
参数运行 Appium 服务器。如果您只想使用 ADB 而不需要其他不安全的功能,这里推荐使用后者。
--allow-insecure=adb_shell
将仅启用 ADB shell 执行功能。这是真的,除非--relaxed-security
也使用,在这种情况下,所有功能仍将启用。