如何在电子框架中调试iframe / webview

时间:2019-06-21 10:58:13

标签: iframe electron

enter image description here我在电子框架中有webview / iFrame。我想调试iFrame中的代码。

我用调试器窗口启动了电子应用程序,如图所示。

我想调试要加载的内容。

1 个答案:

答案 0 :(得分:0)

在渲染器脚本中,获取Webview并打开其devtools。您正在打开包含Web视图的渲染器的devtools。

document.querySelector("webview").openDevTools();

Source