How To Open Chrome In Incognito Tab
I have a scenario open a web link in incognito tab in chrome browser. I am using adb command to open chrome and navigate to specific URL i.e adb shell am start -n com.android.chrom
Solution 1:
I could not find any way using adb
commands. But using ChromeOptions
it is possible if we add "--incognito
" argument.
Solution 2:
Try this! it will work.
adb shell am start -n com.android.chrome/org.chromium.chrome.browser.incognito.IncognitoTabLauncher
Post a Comment for "How To Open Chrome In Incognito Tab"