Using Incogniton with Selenium

TheIgSlime

Regular Member
Joined
Nov 18, 2022
Messages
265
Reaction score
119
Hello good ppl,

If somebody does not know what Incogniton is, it is an anti-detect browser software that does it job amazingly well. It spoofs all of the necessary fingerprints of your browser and makes you appear as a different user each time.

From what I've seen (if you search on Google for Selenium with Incogniton), there is a way to integrate this software with Selenium and automate tasks using the anti-detect features it provides.

My question is, does using Selenium make me more detectable, or does it not make a difference in the specs/fingerprints of the Software's browser mechanisms? I know that just cause I am automating stuff there is a chance to get banned, but the real question is, does using Selenium in it of itself make my browser detectable or does it not make a difference since I am using "Incogniton" (p.s. yes I am using 4g proxies for my operation)

Thanks for any replies in advance.
 
I believe I am well-suited to answer your question. Using a antedetct browser in conjunction with an automation program to manage multiple accounts is a very good solution.

The issue you mentioned about being detected does exist. Currently, using Selenium is not a great choice for this purpose. Its mechanism is based on driving the browser through a webdriver, which can be easily recognized by websites. More popular automation frameworks like Puppeteer and Playwright drive the browser directly through the CDP (Chrome DevTools Protocol), making them relatively safer compared to Selenium.

Additionally, the choice of IP and antedetct browser is very important. It's better to choose IPs that are as pure as possible. For the antedetct browser, I recommend using MoreLogin, which is more secure at the base level compared to other browsers.
Okay thanks, so I should be using puppeteer instead of Selenium?
 
Okay thanks, so I should be using puppeteer instead of Selenium?
I would recommend puppeteer too, but pay attention to the fact, that it is more Node extension, for Python u can try beatifulsoap
 
Back
Top