So as it says in the title I have a problem with importing Selenium module on my Ubuntu laptop. On my Windows pc everything goes fine with basic Selenium code:
from selenium import webdriver
driver = webdriver.Firefox()
but when I try to do that on my Ubuntu machine I get an error that is basically saying:
os.path.basename(self.path), self.start_error_message)
selenium.common.exception.WebDriverException: Message:'geckodriver'executable needs to be in PATH.
Has anyone encoutered this problem and if yes does anyone know how to fix it?