--- a/eric7/WebBrowser/Tools/WebBrowserTools.py Sun Aug 29 12:40:12 2021 +0200 +++ b/eric7/WebBrowser/Tools/WebBrowserTools.py Sun Aug 29 12:40:51 2021 +0200 @@ -234,7 +234,7 @@ @return tuple containing the Chrome version and the QtWebEngine version @rtype tuple of str """ - from PyQt6.QtWebEngineWidgets import QWebEngineProfile + from PyQt6.QtWebEngineCore import QWebEngineProfile useragent = QWebEngineProfile.defaultProfile().httpUserAgent() match = re.search(r"""Chrome/([\d.]+)""", useragent)