Read through all over the internet but still can't resolve the following error while trying to run test script on my test environment
"The certificate is not trusted because the issuer certificate is unknown. The server might not be sending the appropriate intermediate certificates. An additional root certificate may need to be imported."
All software versions are as follows: Firefox - 60.0.2 Python - 3.6 Selenium - 3.12.0 Gecko driver - 20.1
Tried the following and failed: 1- Created custom firefox profile and tried to call in the webdriver code
profile = webdriver.FirefoxProfile("C:/Users/username/AppData/Roaming/Mozilla/Firefox/Profiles/p88ifbjn.Sel")
profile.set_preference('webdriver_assume_untrusted_issuer', True)
profile.update_preferences()
driver = webdriver.Firefox(firefox_profile=profile)
2- Binary code 3 - Accepting un-trusted code 4 - Tried to manually accept certificates
Nothing worked for me, let me know if anyone can help, I am new to automation