Details
-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
6.8.2
-
None
-
Windows 10 Pro
Python 3.13.2
PySide6 6.8.2.1
Description
Properties from true_property are not available for QWebEngineProfile and QNetworkCookie classes. Expect that properties are available and getter/setter members are removed.
Attached test program prints table for QWebEnginePage (where true_property works as expected) and QWebEngineProfile and QNetworkCookie (where properties appear to be missing):
Has Has Has
Class Property Property Getter Setter
QWebEnginePage audio_muted True False False ok
QWebEnginePage background_color True False False ok
QWebEnginePage lifecycle_state True False False ok
QWebEnginePage url True False False ok
QWebEnginePage visible True False False ok
QWebEngineProfile cache_path False True True ??
QWebEngineProfile http_cache_type False True True ??
QWebEngineProfile push_service_enabled False True True ??
QWebEngineProfile spell_check_enabled False True True ??
QNetworkCookie name False True True ??
QNetworkCookie path False True True ??
QNetworkCookie http_only False True True ??
QNetworkCookie secure False True True ??
QNetworkCookie same_site_policy False True True ??
Expected result:
"Has Property" column should show True for all entries and "Has Getter" and "Has Setter" should show False for all entries.