Is there a simple way to filter TLS 1.3 packets in Wireshark?
tls.record.version will not work because it usually contains a value of 0x0303 (TLS 1.2).
I assume that Wireshark recognizes TLS 1.3 by looking at the SupportedVersions extension in ServerHello messages, if the version is 0x0304 (TLS 1.3) it probably applies the protocol for the whole TLS flow.
TLSv1.3 is displayed in the "Protocol" column but I'm not sure which display filter to apply to filter these packets.

