mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-20 07:24:21 +01:00
* * there is really no need to return the reference to the Selenium driver along with the text summary and list of links. * * removing unused second return value from browse_website() * * updated cassette * * updated YAML cassette for test_browse_website * * after requirements reinstall, another update YAML cassette for test_browse_website * * another update YAML cassette for test_browse_website, only as a placholder commit to trigger re-testing due to some docker TCP timeout issue * * another update YAML cassette for test_browse_website --------- Co-authored-by: batyu <batyu@localhost>
12 lines
329 B
Python
12 lines
329 B
Python
from autogpt.commands.web_selenium import browse_website
|
|
|
|
|
|
def test_browse_website():
|
|
url = "https://barrel-roll.com"
|
|
question = "How to execute a barrel roll"
|
|
|
|
response = browse_website(url, question)
|
|
assert "Error" in response
|
|
# Sanity check that the response is not too long
|
|
assert len(response) < 200
|