refactor(automation): remove browser automation, use OS-level automation only

This commit is contained in:
2025-11-22 17:57:35 +01:00
parent 99fa06e12b
commit 84800c663a
44 changed files with 110 additions and 5125 deletions

View File

@@ -71,7 +71,7 @@ export class TemplateMatchingService {
template.searchRegion.width,
template.searchRegion.height
);
foundRegion = await screen.findRegion(templateImage, searchArea);
foundRegion = await screen.find(templateImage, { searchRegion: searchArea });
} else {
// Search entire screen
foundRegion = await screen.find(templateImage);