I have application who is loading some web page.
Creating webView :
let config = WKWebViewConfiguration()
config.mediaTypesRequiringUserActionForPlayback = .all
webView = WKWebView(frame: .zero, configuration: config)
webView.isInspectable = true
let request = URLRequest(url: URL(string: "example.com")
webView.load(request)
in this page i have audio file on different format (mp3/mp4/webM). I can play mp3 and mp4 format all is correct but for webM i getting error.
In my webView look like : mp3/mp4 file.
In my webView look like : webM.







