Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #15

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/seeact.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ async def main(config, base_dir) -> None:
task_input = default_task
task_dict["confirmed_task"] = task_input
website_input = await ainput(
f"Please input the complete ulr of the starting website, and press Enter. The URL must be complete (for example, including http), to ensure the browser can successfully load the webpage. \nOr directly press Enter to use the default website: {default_website}\nWebsite: ")
f"Please input the complete URL of the starting website, and press Enter. The URL must be complete (for example, including http), to ensure the browser can successfully load the webpage. \nOr directly press Enter to use the default website: {default_website}\nWebsite: ")
if not website_input:
website_input = default_website
task_dict["website"] = website_input
Expand Down Expand Up @@ -340,7 +340,7 @@ async def main(config, base_dir) -> None:
# if monitor:
# logger.info("Wait for human inspection. Directly press Enter to exit")
# monitor_input = await ainput()
logger.info("Close brownser context")
logger.info("Close browser context")
logger.removeHandler(log_fh)
logger.removeHandler(console_handler)

Expand Down Expand Up @@ -854,7 +854,7 @@ async def main(config, base_dir) -> None:
logger.info("Wait for human inspection. Directly press Enter to exit")
monitor_input = await ainput()

logger.info("Close brownser context")
logger.info("Close browser context")
logger.removeHandler(log_fh)
logger.removeHandler(console_handler)
close_context = session_control.context
Expand Down