Incogniton + Selenium

favconnection

Newbie
Joined
Aug 27, 2020
Messages
30
Reaction score
6
Someone has used the Automated option (Selenium) of Incogniton? (It's in the paid version)

I wonder if this is possible to warm the fb account automatically by repeating some actions for a few days with this feature.

Thanks.
 
I don't think it's possible with selenium. I have tried it with Instagram and they are really good at identifying it. Facebook owns Instagram so I think facebook might have the same features to catch bots if not better.
 
Unfortunately selenium is detectable by certain systems. There are certain things missing in a browser launched with automation which are very difficult to all spoof. Our focus hasn't been on this so far. Perhaps we will focus on this in the future.
 
Unfortunately selenium is detectable by certain systems. There are certain things missing in a browser launched with automation which are very difficult to all spoof. Our focus hasn't been on this so far. Perhaps we will focus on this in the future.
Hey @ElitePower
Is Incogniton now working with Selenium?
 
It always worked but we haven't changed anything regarding detection.
So you wouldn't recommend using the integrated "automation" into Incogniton?

Would you recommend an external service or way to farm accounts?
 
Your Incogniton browser does not work with selenium at all. :poop:

There's no way to connect to http://127.0.0.1:35000/automation/launch/python/[incogniton_profile_id]

Your documents are sparse and unhelpful.

Wasted my $32 for your pro plan.
 
Someone has used the Automated option (Selenium) of Incogniton? (It's in the paid version)

I wonder if this is possible to warm the fb account automatically by repeating some actions for a few days with this feature.

Thanks.
It can be automated there if you work not through selenium but through Google extensions. There are paid and free Google extensions that allow you to automate work in any browser and also in this one.
 
wait wait !! m I getting this right? you want to launch chrome in incognito using selenium right ? are you paying for this ???

it is just one line of code :

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument('--incognito')
driver = webdriver.Chrome(options=chrome_options)

¯\(ツ)/¯
 
wait wait !! m I getting this right? you want to launch chrome in incognito using selenium right ? are you paying for this ???

it is just one line of code :

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument('--incognito')
driver = webdriver.Chrome(options=chrome_options)

¯\(ツ)/¯
no, theres a browser software called "incogniton"
 
Your Incogniton browser does not work with selenium at all. :poop:

There's no way to connect to http://127.0.0.1:35000/automation/launch/python/[incogniton_profile_id]

Your documents are sparse and unhelpful.

Wasted my $32 for your pro plan.
Hi I just test the feature with pupetter and it was ok with this code :
JavaScript:
const puppeteer = require('puppeteer')
var request = require("request")
var incognitonProfileID = 'xxxx-xxx-xxx-xxx-xxxx';
var url = "http://127.0.0.1:35000/automation/launch/puppeteer/" + incognitonProfileID;

function sleepFor(sleepDuration) {
  var now = new Date().getTime();
  while (new Date().getTime() < now + sleepDuration) {}
}

function actions(body) {
  sleepFor(3000); //Some time for the browser to actually start.

  const screenshot = 'screenshot.png'
  try {
    (async () => {
      const browserURL = body.puppeteerUrl;
      const browser = await puppeteer.connect({
        browserURL
      });
      const page = await browser.newPage()
      await page.goto('https://myip.com')
      await page.screenshot({
        path: screenshot
      })
    //  await browser.close()
      console.log('See screenshot: ' + screenshot)
    })()
  } catch (err) {
    console.error(err)
  }
}

request({
  url: url,
  json: true,
  headers: {
    'Content-Type': 'application/json'
  }
}, function (error, response, body) {

  if (!error && response.statusCode === 200) {
    actions(body)

  }
})

I had to add the "request" library should be the same with python selenium?
And in the soft u need to enable the "Automation" feature in your account settings
 
Unfortunately selenium is detectable by certain systems. There are certain things missing in a browser launched with automation which are very difficult to all spoof. Our focus hasn't been on this so far. Perhaps we will focus on this in the future.
Hey, its been years but I want to ask about playwright ? Do you think its also detectable or even tho it can be detected but its low chance and we run at mass scale (for reddit) so the low percentage of detection might not be important ?
 
Your plan is not feasible, it will not work
 
Back
Top