it didn't work while i replace $cdc_lasutopfhvcZLmcfl to anything try to avoid detected by some site via chromedriver.exe

1

i had read this page Can a website detect when you are using selenium with chromedriver? and i follow the steps in that, but when i finish replace $cdc_lasutopfhvcZLmcfl to whatever_var , i can't lunch chrome by the driver edited, when i try to lunch it i got an error like this The application was unable to start correctly (0xc000007b)

it's that because the driver version i used with ChromeDriver 2.36.540470 ?

when i edit driver in vim after searching the var $cdc_lasutopfhvcZLmcfl, i find the source code was different with the page i mentioned before, it look like this:

function getPageCache(opt_doc, opt_w3c) {
  var doc = opt_doc || document;
  var w3c = opt_w3c || false;
  var key = '$cdc_asdjflasutopfhvcZLmcfl_';
  if (w3c) {
    if (!(key in doc))
      doc[key] = new CacheWithUUID();
    return doc[key];
  } else {
    if (!(key in doc))
      doc[key] = new Cache();
    return doc[key];
  }
}

any suggestion please ?

selenium
selenium-chromedriver
asked on Stack Overflow Mar 7, 2019 by Dashu

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0