DOMStorage.getDOMStorageItems domain call fails during deserialization due to invalid entries field type (instead of List<List<Double>> should be List<List<String>>).
Here is the corrected dev.kdriver.cdp.domain.DOMStorage.GetDOMStorageItemsReturn class (Tested with Chrome 142.x->146.x)
@Serializable
data class GetDOMStorageItemsReturn(
val entries: List<List<String>>,
)
DOMStorage.getDOMStorageItemsdomain call fails during deserialization due to invalidentriesfield type (instead ofList<List<Double>>should beList<List<String>>).Here is the corrected
dev.kdriver.cdp.domain.DOMStorage.GetDOMStorageItemsReturnclass (Tested with Chrome 142.x->146.x)