ERRORinspector_emulation_agentcc492 Can only enable virtual time for pages not workers - selenium C chrome error in console | Selenium C# Forum
M
mai Posted on 10/12/2018
Hi
I get 2 errors in the console when using chrome to get values from textbox. I am still able to get the values correctly but console is throwing errors.

(1)ERROR:inspector_emulation_agent.cc(492)] Can only enable virtual time for pages, not workers - chrome error 
and
(2)ERROR:latency_info.cc(144)] Surface::TakeLatencyInfoFromFrame, LatencyInfo vector size 102 is too big.

I googled on the internet and different websites suggested to add options when creating Chromedriver. So I added them but I still get the errors
		options.AddAdditionalCapability("useAutomationExtension"false);
                options.AddArguments("--allow-no-sandbox-job");
                options.AddArguments("--no-sandbox");
                options.AddArguments("--ignore-certificate-errors");
                options.AddArguments("--disable-extensions");
                options.SetLoggingPreference(LogType.Driver, LogLevel.All);
                options.AddAdditionalCapability("useAutomationExtension"false);
                driver = new ChromeDriver(@"C:\selenium\latestDriver",options);

I have attached my code

G
gunjan Replied on 11/12/2018

The code is running fine. I can't see any error when I run the code


M
mai Replied on 12/12/2018

thanks Gunjan. I'll try again