Chromeコマンドライン起動パラメータ例
参照先: Chrome起動パラメータ最全集合 Chromeフルスクリーンモード起動 実行環境: Windows10 64bit Chrome 73
適用シーン:自動化テスト Web側をクライアントにシミュレート:コード-->batとして保存-->exe形式に変換-->顧客に を送信
(chromeを一緒にパッケージ化すればクライアントブラウザを統一でき、簡素化してから一般15 M程度圧縮できる)
効果図:
.
適用シーン:
(chromeを一緒にパッケージ化すればクライアントブラウザを統一でき、簡素化してから一般15 M程度圧縮できる)
@ECHO OFF
ECHO ... ...
START "" "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe" ^
--incognito ^
--no-sandbox ^
--test-type --ignore-certificate-errors ^
--allow-running-insecure-content ^
--disable-infobars ^
--disable-plugins ^
--disable-popup-blocking ^
--kiosk ^
--start-maximized ^
--app=https://www.bing.com/
ECHO
EXIT
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Chrome , :chrome [ ] [ ]
:: --incognito: ( cookies)
:: --no-sandbox: ,
:: --test-type --ignore-certificate-errors:
:: --allow-running-insecure-content:
:: --disable-infobars: “Chrome is being controlled by automatic test software”
:: --disable-plugins:
:: --disable-popup-blocking: ( : xxx )
:: --kiosk: /
:: --start-maximized: (APP )
:: --window-position=0,0: =x,y(APP )
:: --window-size="1440,900": ="1440,900"(APP )
:: --app=URL: APP ( , / / , )
:: --new-window URL: ( )
効果図:
.