We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1734273 commit 0cf2d99Copy full SHA for 0cf2d99
.changes/webdriver-app-ext.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-driver": patch:enhance
3
4
+
5
+Automatically append the `.exe` extension on the application path in `tauri:options`.
crates/tauri-driver/src/server.rs
@@ -51,7 +51,10 @@ impl TauriOptions {
51
#[cfg(target_os = "windows")]
52
fn into_native_object(self) -> Map<String, Value> {
53
let mut ms_edge_options = Map::new();
54
- ms_edge_options.insert("binary".into(), json!(self.application));
+ ms_edge_options.insert(
55
+ "binary".into(),
56
+ json!(self.application.with_extension("exe")),
57
+ );
58
ms_edge_options.insert("args".into(), self.args.into());
59
60
if let Some(webview_options) = self.webview_options {
0 commit comments