I want to disable "chrome is being controlled by automated test softwarechrome is being controlled by automated test software" this header statement #4016
Unanswered
dhanashrivitara
asked this question in
Help Needed
Replies: 1 comment 1 reply
-
|
I don't think that's possible. @AutomatedTester what do you think? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As you can see in above image, it is showing that header thing. Now I am trying to disable that header
{ "src_folders": [ "tests" ], "output_folder": "testreports", "custom_commands_path": "./tests/customCommands", "custom_assertions_path": "", "page_objects_path": "", "persist_globals": true, "globals_path": "globals.js", "selenium": { "start_process": true, "server_path": "lib/drivers/selenium-server-standalone-3.14.0.jar", "log_path": "log/", "start_session": true, "host": "127.0.0.1", "port": 4425, "cli_args": { "webdriver.chrome.driver": "lib/drivers/chromedriver.exe", "webdriver.gecko.driver": "lib/drivers/geckodriver.exe", "webdriver.edge.driver": "lib/drivers/msedgedriver.exe", "webdriver.ie.driver": "lib/drivers/IEDriverServer.exe" } }, "test_workers": { "enabled": true, "workers": "auto" }, "test_settings": { "default": { "launch_url": "http://localhost", "selenium_port": 4425, "selenium_host": "localhost", "silent": true, "end_session_on_fail": false, "screenshots": { "enabled": true, "path": "/screenshots" }, "desiredCapabilities": { "browserName": "chrome", "javascriptEnabled": "1", "acceptSslCerts": true, "trustAllSSLCertificates": true, "acceptInsecureCerts": true, "marionette": true, "elementScrollBehavior": 1 } }, "chrome": { "desiredCapabilities": { "browserName": "chrome", "javascriptEnabled": true, "acceptSslCerts": true, "handlesAlerts": true, "cssSelectorsEnabled": true, "databaseEnabled": true, "rotatable": true, "chromeOptions": { "args": [ "window-size=1600, 1000", "disable-infobars", "disable-notifications", "use-fake-device-for-media-stream", "use-fake-ui-for-media-stream" ] } } }, "firefox": { "desiredCapabilities": { "browserName": "firefox" } }, "edge": { "desiredCapabilities": { "browserName": "MicrosoftEdge" } }, "ie": { "desiredCapabilities": { "browserName": "internet explorer" } } } }this is my nightwatch plugin i have added "disable-infobars" in chrome section but it is not working will you help me with this.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions