0

I'm trying to run Selenium on Python using GeckoDriverManager.

Here's the code:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.firefox.service import Service as FirefoxService
from webdriver_manager.firefox import GeckoDriverManager

service = FirefoxService(executable_path=GeckoDriverManager().install())
driver = webdriver.Firefox(service=service)

It was working fine until the last 5 minutes but now when I run any program that contains it this exception is thrown:

selenium.common.exceptions.SessionNotCreatedException: Message: Failed to set preferences: Unable to write Firefox profile: No space left on device (os error 28)

What does that mean? I've searched a bit about this but couldn't find anything.

ADrakkar
  • 11
  • 4

0 Answers0