如何使用adb shell
命令启动浏览器并使其打开某个网页?
不确定您的意思,是启动浏览器意图吗?
—
BeRecursive
如何使用adb shell
命令启动浏览器并使其打开某个网页?
Answers:
运行此命令将在android中启动网络浏览器:
adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com
如果您的网址符号过多,还应该积极引用
adb shell am start -a android.intent.action.VIEW -d 'http://stackoverflow.com/?uid=isme\&debug=true'
如果您想专门启动Chrome
adb shell am start \
-n com.android.chrome/com.google.android.apps.chrome.Main \
-a android.intent.action.VIEW -d 'file:///sdcard/lazer.html'
还通过以下方式授予Chrome访问sdcard的权限:
adb shell pm grant com.android.chrome android.permission.READ_EXTERNAL_STORAGE
如果您使用的是Chrome Canary版本,请用com.chrome.canary交换com.android.chrome。