# Remote Debugging

使用“edgechromium”时启用远程调试。 这可用于使用Playwright为应用程序编写测试。 参看 https://playwright.dev/docs/webview2 (opens new window) 了解如何配置他。

import webview

if __name__ == '__main__':
    webview.settings['REMOTE_DEBUGGING_PORT'] = 9222

    window = webview.create_window('Webview', 'https://pywebview.flowrl.com/hello')
    webview.start()