My python code uses selenium to launche a firefox session, input a URL, and open the web page. It ran successfully until one day it stopped working. Firefox can be launched, but the URL is not filled in the url box. Hence the web page cannot be open for sure. It finally ends with a timeout error.
I updated/re-installed python and selenium and firefox. But the problem is not resolved. What causes this issue?
I cannot publish my work code here. Here is a piece of code that should work. Firefox is launched, but the URL is not input.
Thanks for hints.
from selenium import webdriver browser = webdriver.Firefox() browser.get('http://seleniumhq.org/')