使用 ADB 打开 Chrome
Open Chrome with ADB
我曾经能够像这样使用 ADB 启动 Chrome:
adb shell am start -n com.android.chrome/com.android.chrome.Main
但现在当我尝试时,我得到:
Starting: Intent { cmp=com.android.chrome/.Main }
Error type 3
Error: Activity class {com.android.chrome/com.android.chrome.Main} does not exist.
Main Class 名称似乎已更改。如果有,新的是什么?
此
的 Adb 命令
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main
要使用 ADB 打开 Chrome 的默认页面,您可以使用:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main
相反,要直接打开 url,您可以使用:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main -d "www.facebook.com"
adb shell
使用默认浏览器的网络视图:
am start -a android.intent.action.VIEW -d https://www.google.com/
Firefox:
monkey -p org.mozilla.tv.firefox -c android.intent.category.LAUNCHER 1
铬:
monkey -p org.chromium.chrome -c android.intent.category.LAUNCHER 1
我曾经能够像这样使用 ADB 启动 Chrome:
adb shell am start -n com.android.chrome/com.android.chrome.Main
但现在当我尝试时,我得到:
Starting: Intent { cmp=com.android.chrome/.Main }
Error type 3
Error: Activity class {com.android.chrome/com.android.chrome.Main} does not exist.
Main Class 名称似乎已更改。如果有,新的是什么?
此
的 Adb 命令adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main
要使用 ADB 打开 Chrome 的默认页面,您可以使用:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main
相反,要直接打开 url,您可以使用:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main -d "www.facebook.com"
adb shell
使用默认浏览器的网络视图:
am start -a android.intent.action.VIEW -d https://www.google.com/
Firefox:
monkey -p org.mozilla.tv.firefox -c android.intent.category.LAUNCHER 1
铬:
monkey -p org.chromium.chrome -c android.intent.category.LAUNCHER 1