Skip to content
New issue

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

Additional ChromeOptions #1

Closed
Joshua901 opened this issue Oct 5, 2021 · 2 comments
Closed

Additional ChromeOptions #1

Joshua901 opened this issue Oct 5, 2021 · 2 comments

Comments

@Joshua901
Copy link

Been testing now whole day. Noticed something strange.

var client = new KameleoLocalApiClient(new Uri(KameleoBaseUrl));
client.SetRetryPolicy(null);

// Search Chrome Base Profiles
var baseProfileList = await client.SearchBaseProfilesAsync("desktop", "windows", "chrome", "ru-ru");

Random rnd = new Random();
var baseId = rnd.Next(1, baseProfileList.Count);

// Create a new profile with recommended settings
// Choose one of the Firefox BaseProfiles
// You can set your proxy up in the setProxy method
var requestBody = BuilderForCreateProfile
	.ForBaseProfile(baseProfileList[baseId].Id)
	.SetRecommendedDefaults()
	.SetProxy("http", new Server("zproxy.lum-superproxy.io", 22225, "lum-customer-joshua901-zone-zone2", "5inhblkgrzxj"))
	//.SetProxy("http", new Server("zproxy.lum-superproxy.io", 22225, "lum-customer-joshua901-zone-russiashared-ip-181.214.180.215", "lqoz0ee2hbvb"))
	.SetLauncher("chrome")
	//.SetScreen("--window-size", 500, 783)
	.Build();

var profile = await client.CreateProfileAsync(requestBody);

// Start the browser
await client.StartProfileAsync(profile.Id);

// Connect to the running browser instance using WebDriver
var uri = new Uri($"{KameleoBaseUrl}/webdriver");
var opts = new ChromeOptions();
opts.AddAdditionalOption("kameleo:profileId", profile.Id.ToString());


opts.AddExcludedArgument("enable-automation");
opts.AddArgument("--window-size=500,783");
opts.AddArgument("disable-infobars");
opts.AddArgument("--incongito");
opts.AddArgument("--disable-extensions");

opts.AddArgument("disable-gpu");
opts.AddArgument("headless");
opts.AddArgument("--ignore-certificate-errors");
opts.AddArgument("no-sandbox");
opts.AddArgument("--silent-launch");
opts.AddArgument("--no-startup-window");

//var webdriver = new RemoteWebDriver(uri, opts);
_driver = new RemoteWebDriver(uri, opts)

I want to add my additional ChromeOptions to my driver, especially be able to run things in "headless" mode.
Even if i define the Chromeoptions above and create the RemoteWebDriver with these options, the chrome browser does still popup and not run as headless.
How come and how do i add my additional options?

@kameleo-team
Copy link
Contributor

kameleo-team commented Oct 6, 2021

First, you have to understand how Kameleo is working with Selenium. I'll describe it for you:

  • The browser is started by Kameleo
  • The RemoteWebDriver is not starting any browser, just connecting to the already stated browser
    Because of these, you cannot pass any arguments to the browser with the RemoteWebDriver's options.

However there is a solution how you can provide additional web driver options. There is a POST /profiles/{guid}/start endpoint. See its documentation on SwaggerHub. The GET /profiles/{guid}/start endpoint is simply starting the profile, but this POST /profiles/{guid}/start endpoint can process additional arguments, options, and preferences.

See our example code.

await client.StartProfileWithWebDriverSettingsAsync(profile.Id, new WebDriverSettings
{
	Arguments = new List<string> { "mute-audio" },
	Preferences = new List<Preference>
	{
		new Preference("profile.managed_default_content_settings.images", 2),
		new Preference("profile.password_manager_enabled.images", 2),
	},
	AdditionalOptions = new List<Preference>
	{
		new Preference("pageLoadStrategy", "eager"),
	}
});

Please note that there are arguments we are not supporting, as that may cause issues and it may stop our spoofing mechanism to work.

I see that you use this flag:

opts.AddArgument("--disable-extensions");

This is cannot be added, since the built-in browsers are preinstalled with Kameleo's extension. If you remove it, the spoofing won't work.

I see you want to use this flag as well:

opts.AddArgument("disable-gpu");

You can simply set WebGL to Block with this call:

.SetWebgl("block")

It will result in the "disable-3d-apis" flag

Using an incognito window is not necessary. The spoofing is working in the regular mode (not incognito), and it won't be suspicious for websites. Please note that the spoofing in the incognito mode is not working yet.

Currently, there is no opportunity to start the browser in headless mode. But this is something we will support in the future. What other WebDriver configs are must-haves for you?

@deaktomi
Copy link

Headless mode is now supported and it was the same anti-detect mode as the headful profiles, so feel free to save some resources.

More info here.

await client.StartProfileWithOptionsAsync(profile.Id, new WebDriverSettings
{
    Arguments = new List { "--headless" },
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants