Skip to content

Commit

Permalink
fix selenium test_scrape_web_page proxy error
Browse files Browse the repository at this point in the history
  • Loading branch information
shenchucheng committed Jan 5, 2024
1 parent afa2411 commit 1ff5033
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/metagpt/tools/test_web_browser_engine_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ async def test_scrape_web_page(browser_type, use_proxy, url, urls, proxy, capfd)
global_proxy = CONFIG.global_proxy
try:
if use_proxy:
server, proxy = await proxy
CONFIG.global_proxy = proxy
browser = web_browser_engine_selenium.SeleniumWrapper(browser_type=browser_type)
result = await browser.run(url)
Expand All @@ -38,6 +39,7 @@ async def test_scrape_web_page(browser_type, use_proxy, url, urls, proxy, capfd)
assert len(results) == len(urls) + 1
assert all(("MetaGPT" in i.inner_text) for i in results)
if use_proxy:
server.close()
assert "Proxy:" in capfd.readouterr().out
finally:
CONFIG.global_proxy = global_proxy
Expand Down

0 comments on commit 1ff5033

Please sign in to comment.