Why DKIM needs a selector
A DKIM key is published as a TXT record at selector._domainkey.your-domain. The selector is a label chosen by whoever sends the mail, and a domain can have many: one per mail provider, rotated over time. DNS offers no way to list them, so a DKIM lookup needs the selector.
You find it in any message the domain has sent: open the message source and read the DKIM-Signature header. The s= tag is the selector and d= is the signing domain. If you leave the selector empty, OrbitProbe tries a fixed list of selectors that large providers use by default. A miss on that list does not mean the domain has no DKIM.
Reading the result
v=DKIM1 identifies the record, k= gives the key type (RSA unless stated, or ed25519) and p= holds the public key. For RSA keys the tool decodes the key and reports its length: 2048 bits is the current norm, 1024 still verifies but should be rotated, and anything shorter is rejected by major receivers. An empty p= means the key has been revoked on purpose. t=y marks the domain as still testing DKIM.
A valid key in DNS is half of DKIM. The other half is the sending server actually signing with the matching private key, which only a real message can show. Check the Authentication-Results header of a delivered message for dkim=pass.