Closed urec56 closed 8 months ago
Thank you for the report. I have some questions:
I install it for the first time It was local test on my PC I use IPv4 instead of IPv6 because I don't have v6
Is localhost
correctly set to 127.0.0.1
? I cannot see why it should fail otherwise.
Please check again if there is really no geckodriver.log
file present. It should really be there given that this failure from above comes from geckodriver, and it should have already written content to stdout (as captured by Selenium and piped to that file).
from selenium.webdriver import Firefox
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.common.by import By
url = sys.argv[1]
opts = Options()
opts.log.level = "trace"
driver = Firefox(options=opts)
driver.get(url)
Am i right?
I don't have any geckodriver.log
in my directory
Without trace logs I cannot really help. Maybe you could use WireShark to record the HTTP requests / responses with geckodriver? This could give an idea what might go wrong here.
Ok, I'll check it in few days
Btw. you can also use a plain curl
command to actually get this tested. We have some documentation, which describes what you have to do.
Sorry. I don't have any time to check this now. If I will, I'll check it and return some info here
That's fine. I'll close the issue for now and we are happy to reopen in case it is indeed a problem on our side.
yep
System
Testcase
or
both
Stacktrace
Trace-level log
This file didn't created