We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@john-doherty - First of all thank you for this amazing library.
Although I had already asked this question via #76 since the suggestion in there is not working and I cannot re-open it, I opened a new issue.
As per the suggestion, adding incognito under runtime folder in chromeDriver.js is not working.
` 'use strict';
var chromedriver = require('chromedriver'); var selenium = require('selenium-webdriver');
/**
Creates a Selenium WebDriver using Chrome as the browser
@returns {ThenableWebDriver} selenium web driver */ module.exports = function() {
var driver = new selenium.Builder().withCapabilities({ browserName: 'chrome', javascriptEnabled: true, acceptSslCerts: true, chromeOptions: { args: ['start-maximized', 'disable-extensions','incognito'] }, path: chromedriver.path }).build();
driver.manage().window().maximize();
return driver; };`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@john-doherty - First of all thank you for this amazing library.
Although I had already asked this question via #76 since the suggestion in there is not working and I cannot re-open it, I opened a new issue.
As per the suggestion, adding incognito under runtime folder in chromeDriver.js is not working.
` 'use strict';
var chromedriver = require('chromedriver');
var selenium = require('selenium-webdriver');
/**
Creates a Selenium WebDriver using Chrome as the browser
@returns {ThenableWebDriver} selenium web driver
*/
module.exports = function() {
var driver = new selenium.Builder().withCapabilities({
browserName: 'chrome',
javascriptEnabled: true,
acceptSslCerts: true,
chromeOptions: {
args: ['start-maximized', 'disable-extensions','incognito']
},
path: chromedriver.path
}).build();
driver.manage().window().maximize();
return driver;
};`
The text was updated successfully, but these errors were encountered: