remove playwright

This commit is contained in:
2024-09-24 13:59:18 +02:00
parent 0115ad7139
commit 32f8b9812d
7 changed files with 153 additions and 138 deletions
+2 -2
View File
@@ -210,9 +210,9 @@ class OCRChecker {
async take_screen_shot() {
let name = this.get_file_name()
console.log("will take screenshot for " + this.device.model() + ":" + this.device.serial())
console.log("will take screenshot for " + this.device.model + ":" + this.device.serial)
console.log("name is " + name)
let stdout1 = await exec("adb -s " + this.device.serial() + " exec-out screencap -p > " + name)
let stdout1 = await exec("adb -s " + this.device.serial + " exec-out screencap -p > " + name)
await delay(5000);
console.log(`stdout: ${stdout1}`);
return name