From b6a9f470e57204313ea98926f0ec8f320f0d8d95 Mon Sep 17 00:00:00 2001 From: qubixes <44498096+qubixes@users.noreply.github.com> Date: Thu, 7 Sep 2023 13:28:06 +0200 Subject: [PATCH] We might need to use driver.quit() (#24) --- artscraper/googleart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artscraper/googleart.py b/artscraper/googleart.py index ce87f49..47c68fc 100755 --- a/artscraper/googleart.py +++ b/artscraper/googleart.py @@ -184,4 +184,4 @@ def save_artwork_information(self, link): self.save_image() def close(self): - self.driver.close() + self.driver.quit()