accessibility on WKWebView on first launch

I have a WKWebView and I would like to add accessibility. The only problem is when the page loads up the first time, accessibility focus is lost on the buttons in the page but if I use my finger to tap the screen, then focus comes on. How can I enable focus on selection of the Webview

import WebKit
class ViewControllear: UIViewController, WKUIDelegate {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        let myWebView:WKWebView = WKWebView(frame: CGRect(x:0, y:0, width: UIScreen.main.bounds.width, height:UIScreen.main.bounds.height))
        myWebView.uiDelegate = self
        self.view.addSubview(myWebView)
        
        
        //1. Load web site into my web view
        let myURL = URL(string: "https://www.apple.com")
        let myURLRequest:URLRequest = URLRequest(url: myURL!)
        myWebView.load(myURLRequest)
        
    }
}

https://i.stack.imgur.com/2hvxd.jpg

accessibility on WKWebView on first launch
 
 
Q