Can not hide "search website" menu in wkwebview for iOS16

I have an App which need to select content info in a webview, then popup a menu for more action, and this is all done using h5, in iOS, I have hide the menu using below code:

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
    return NO;
}

Everything went well below iOS16, when iOS upgraded to iOS16, a system menu called "search website" shows above the h5 menu, does anyone knows how to hide the "search website"?

Can not hide "search website" menu in wkwebview for iOS16
 
 
Q