1diff --git a/playwright/_impl/_driver.py b/playwright/_impl/_driver.py 2index 22b53b8..2d86626 100644 3--- a/playwright/_impl/_driver.py 4+++ b/playwright/_impl/_driver.py 5@@ -23,14 +23,7 @@ from playwright._repo_version import version 6 7 8 def compute_driver_executable() -> Tuple[str, str]: 9- driver_path = Path(inspect.getfile(playwright)).parent / "driver" 10- cli_path = str(driver_path / "package" / "cli.js") 11- if sys.platform == "win32": 12- return ( 13- os.getenv("PLAYWRIGHT_NODEJS_PATH", str(driver_path / "node.exe")), 14- cli_path, 15- ) 16- return (os.getenv("PLAYWRIGHT_NODEJS_PATH", str(driver_path / "node")), cli_path) 17+ return "@node@", "@driver@" 18 19 20 def get_driver_env() -> dict: