Baker68

Results 9 comments of Baker68

You could try to use the code provided by @blakebyrnes [here](https://github.com/ulixee/hero/issues/150) ; So you could send : ```ts await page.devtoolsSession.send("Emulation.clearDeviceMetricsOverride"); await page.devtoolsSession.send("Emulation.setDeviceMetricsOverride", { ...contentSize, mobile: true, }); ``` you should...

@lazuardyk ; here is what you need : https://ulixee.org/docs/hero/plugins/core-plugins#new-coreplugincreateoptions ``` constructor({ emulationProfile, corePlugins, logger, sessionSummary }) { emulationProfile.userAgentOption.string = "UA string here"; super({ emulationProfile, corePlugins, logger, sessionSummary }); ```

@blakebyrnes , I can't find the `waitForDialog` method. However I did managed to "skip" this issue by using the geolocation param : ``` const browser = new Agent({ showReplay: false,...

here is a config that works for me (low obfuscation,high performance): ``` const obfuscatorConfig = { compact: true, controlFlowFlattening: false, deadCodeInjection: false, debugProtection: false, debugProtectionInterval: 0, disableConsoleOutput: false, identifierNamesGenerator: "hexadecimal",...

@rolandh A workaround is to start it from another thread ; wait 1-2 seconds and then call anti-dump method. The code works (on my .net 4.5 projects),using the above method....

Ogh u`re so right;; Here`s my 2nd option on this one `using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace B.antidump { internal class...

@rolandh I managed to get it working by : -changing the watermark name (i don`t think it`s important this) -changing the the NameService.cs string ObfuscateNameInternal(byte[] hash, RenameMode mode) ; case...

@blakebyrnes ; No, I do not manually navigate around chrome ; No, I did not disabled javascript ; I think that this issue is also related to the fact that...

I have been doing some tests and it does seem to be related to the page state, but some times it even fails after waiting for AllContentLoaded. It fails even...