From ec08261ee213894acdf18c62846da2f484fbadf2 Mon Sep 17 00:00:00 2001 From: tronikos Date: Tue, 11 Jun 2024 07:47:18 -0700 Subject: [PATCH] Fix clearWebstorage and clearCookies (#19) --- fullykiosk/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fullykiosk/__init__.py b/fullykiosk/__init__.py index 9cd1e34..a9bf913 100644 --- a/fullykiosk/__init__.py +++ b/fullykiosk/__init__.py @@ -122,10 +122,10 @@ async def clearCache(self): await self.sendCommand("clearCache") async def clearWebstorage(self): - await self.clearWebstorage("clearWebstorage") + await self.sendCommand("clearWebstorage") async def clearCookies(self): - await self.clearCookies("clearCookies") + await self.sendCommand("clearCookies") class _RequestsHandler: