I am trying to load a page designed to be loaded with unity 3d plugin with the below code.
Qt Code:
  1. QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
  2. QWebView *webView = new QWebView();
  3. webView->page()->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
  4.  
  5. webView->load(QUrl("file:///Users/user/Downloads/Empty/Empty.html"));
  6. webView->show();
To copy to clipboard, switch view to plain text mode 

unity3d.jpg

The page is loaded as blank.

Getting the below errors
Cannot find executable for CFBundle 0x7f97f9f18d40 </Library/Internet Plug-Ins/Unused> (not loaded)

But unity web player.plugin is found in the /Library/Internet Plug-Ins

Kindly let me know where I am going wrong