Disabling WKWebView tracking
WKWebView Interaction path.WKWebView, the path for an Interaction is generated as a wildcard. For example, for a local WKWebView folder in the assets directory the Interaction path will be ios://touchpoint/*/webview/*, and if there is no such directory in local files, the path will be generated directly for an html file as follows: ios://touchpoint/*/htmlfilename. To disable WKWebView tracking, add the following to your app's Info.plist file and set DisableWKWebViewTracking to YES (boolean value):
<key>MedalliaMXO Config</key>
<dict>
<key>Swizzling Options</key>
<dict>
<key>DisableWKWebViewTracking</key>
<true/>
</dict>
</dict>