feat: Add option to return web scrape content instead of printing

This commit is contained in:
Paul Gauthier 2024-11-08 14:27:59 -08:00 committed by Paul Gauthier (aider)
parent 77cb64958e
commit 52c49fc8fd
3 changed files with 5 additions and 3 deletions

View file

@ -44,7 +44,7 @@ class TestScrape(unittest.TestCase):
self.commands.io.tool_error = mock_print_error
# Run the cmd_web command
result = self.commands.cmd_web("https://example.com")
result = self.commands.cmd_web("https://example.com", return_content=True)
# Assert that the result contains some content
self.assertIsNotNone(result)