Tauri supports webdriver via the web driver plugin, is it possible/planned to support the dev tools protocol to manipulate a tauri application via playwright? I currently have a website being tested with playwright and I want to use the some of the tests to test the application in a webview. It's not 100% the same application, some functionality is unique to the webview but being able to use the same testing tools would be neat.
#Tauri supporting dev tools protocol?
6 messages · Page 1 of 1 (latest)
idk about playwright specifically, but on Windows the dev tools protocol works in theory (because it's a chromium based webview). On macos and linux this won't be supported as long as we (only) use the system webviews (because they are not chromium, and also less browser-like than the windows webview)
I believe in the past i had to use tauri devtools+ selenium bridge to finnally use playright
Can you tell me more about this? Is devtools+ selenium bridge a plugin or .. ?