web-view
web-view copied to clipboard
Windows can not debug
in windows10, can not open console to debug
Have you had a look at the original web-view's readme? There is a section on debugging where it say:
On Windows there is no easy to way to enable debugging, but you may include Firebug in your HTML code:
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>Even though Firebug browser extension development has been stopped, Firebug Lite is still available and just works.
If you enable the Edge backend (web-view = { version = "*", features = ["edge"] } in Cargo.toml) you can use the standalone Edge DevTools app.
This enables you to connect the dev tools to your Rust-backed web view as if it were a normal Edge window.
@dkaste i've made this changes, but already cant open the DevTools! 😥
some news about this topic?