In the event that the message “logtype performance not found” pops up as you are attempting to run Selenium with Chrome, it is necessary to understand how the ChromeDriver is implemented and how the logs can be enabled.
Chrome drivers as well as Chrome browsers need to be updated since they can be the source of the logging problem since they are not properly aligned.
The main improvement is that instead of ‘loggingPrefs’, the ‘goog:loggingPrefs’ will be utilized. In this regard, replace the caps dictionary with ‘goog:loggingPrefs’: {‘performance’: ‘ALL’}.
This will enable the system to log every performance of the chrome driver. It should be also remembered that the version of ChromeDriver has also to be the same as the version of the installed Chrome.
Once these steps have been completed, this error will not be displayed and it will be possible to extract and print the performance logs.