Unable to get valid WinSAT score. javascript console

I often get this error when launching my web application on Google Chrome

[2536:2008:0502/143602:ERROR:gpu_info_collector_win.cc(96)] Can't retrieve a valid WinSAT assessment. 

its ok in firefox and IE ..

I was already looking for solutions, but no luck.

I am using Aptana Studio + Sencha

How to get rid of this?

+6
source share
2 answers

I had this error when I provided the path to chrome.exe as a system property - it left when I used chromedriver.exe , as I downloaded from here: https://code.google.com/p/chromedriver/downloads/list

+1
source

This means that the winsat check failed. Winsat is a tool that checks windows. If this fails, it usually indicates that something is wrong with your system (it may be a driver).

In the above case, I would go with the display adapter driver, so try updating it using Windows Update.

To start winsat yourself, you can run 'winsat formal' from the command line. Then you can look for suspicious output (if Direct3D has 0 F / S performance, then this is not normal :-))

Based on the problematic conclusion, you can see what is wrong with the system (in the above example, the display adapter was found as standard VGA and a simple update, the error made by chrome / selenium was fixed).

NTN

0
source

Source: https://habr.com/ru/post/944102/


All Articles