AutoGPT icon indicating copy to clipboard operation
AutoGPT copied to clipboard

ERROR: Couldn't read tbsCertificate as SEQUENCE ERROR: Failed parsing Certificate

Open Nickonomic opened this issue 1 year ago • 10 comments

Duplicates

  • [X] I have searched the existing issues

Steps to reproduce 🕹

NEXT ACTION: COMMAND = browse_website ARGUMENTS = {'url': 'https://www.coindesk.com/', 'question': 'current market situation in Bitcoin and Ethereum'}

DevTools listening on ws://127.0.0.1:50539/devtools/browser/d6e426df-2944-4ae2-be46-14829038a165 [12176:6724:0415/194920.727:ERROR:cert_issuer_source_aia.cc(34)] Error parsing cert retrieved from AIA (as DER): ERROR: Couldn't read tbsCertificate as SEQUENCE ERROR: Failed parsing Certificate

[12176:11356:0415/194930.781:ERROR:device_event_log_impl.cc(222)] [19:49:30.781] USB: usb_device_handle_win.cc:1046 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F) [12176:11356:0415/194930.782:ERROR:device_event_log_impl.cc(222)] [19:49:30.782] USB: usb_device_handle_win.cc:1046 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)

Current behavior 😯

No response

Expected behavior 🤔

No response

Your prompt 📝

# Paste your prompt here

Nickonomic avatar Apr 15 '23 16:04 Nickonomic

Same error here.

mahaniok avatar Apr 16 '23 14:04 mahaniok

same

Vexchan avatar Apr 16 '23 15:04 Vexchan

Same here

Mutuo1 avatar Apr 16 '23 17:04 Mutuo1

same here

barclayneira avatar Apr 16 '23 17:04 barclayneira

Same :-)

LarsHoldgaard avatar Apr 16 '23 17:04 LarsHoldgaard

same here

leobui98 avatar Apr 17 '23 10:04 leobui98

same

jaxblack avatar Apr 17 '23 15:04 jaxblack

same here.

remivee avatar Apr 18 '23 10:04 remivee

Same here. How do I get the browser to actually open when the "browse_website" command is used? It the demo video, you ssee chrome actually opens when Auto-GPT invokes the "browse_website" command

t0xicfume avatar Apr 19 '23 02:04 t0xicfume

In my case, chrome does open some times but when it tries to navigate the site certificate parsing errors appear as it tries to navigate some pages.

barclayneira avatar Apr 19 '23 09:04 barclayneira

#1949

ntindle avatar Apr 23 '23 04:04 ntindle

same here

dodsont avatar Apr 29 '23 23:04 dodsont

same issue running latest stable version

dauronr avatar May 08 '23 05:05 dauronr

Same

azahran007 avatar May 09 '23 21:05 azahran007

same

anishrajpandey avatar Jun 02 '23 17:06 anishrajpandey

same

IstvanGereenyi avatar Jun 05 '23 18:06 IstvanGereenyi

Same But was able to get around it with: options = webdriver.ChromeOptions() options.add_experimental_option('excludeSwitches', ['enable-logging'])

athagar avatar Jun 08 '23 18:06 athagar

same, can't get a workaround with

from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.options import Options

chrome_options = Options() chrome_options.add_argument("--ignore-certificate-errors") chrome_options.add_experimental_option('excludeSwitches', ['enable-logging']) driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)

mcanabrava avatar Jul 25 '23 22:07 mcanabrava