Don't interact with fields that are already filled in (#183)

This commit is contained in:
Kerem Yilmaz
2024-04-12 20:05:25 -07:00
committed by GitHub
parent 3ea46b93cf
commit 7b1c1d5a02
4 changed files with 13 additions and 5 deletions

View File

@@ -604,6 +604,7 @@ class ForgeAgent(Agent):
for window_step in window_steps:
if window_step.output and window_step.output.action_results:
action_results.extend(window_step.output.action_results)
action_results_str = json.dumps([action_result.model_dump() for action_result in action_results])
# Generate the extract action prompt
navigation_goal = task.navigation_goal

View File

@@ -227,7 +227,7 @@ class TaskBlock(Block):
raise TaskNotFound(task.task_id)
if not updated_task.status.is_final():
raise UnexpectedTaskStatus(task_id=updated_task.task_id, status=updated_task.status)
if updated_task.status == TaskStatus.completed:
if updated_task.status == TaskStatus.completed or updated_task.status == TaskStatus.terminated:
LOG.info(
f"Task completed",
task_id=updated_task.task_id,

View File

@@ -143,6 +143,11 @@ async def handle_input_text_action(
) -> list[ActionResult]:
xpath = await validate_actions_in_dom(action, page, scraped_page)
locator = page.locator(f"xpath={xpath}")
current_text = await locator.input_value()
if current_text == action.text:
return [ActionSuccess()]
await locator.clear()
text = get_actual_value_of_parameter_if_secret(task, action.text)
await locator.fill(text, timeout=SettingsManager.get_settings().BROWSER_ACTION_TIMEOUT_MS)
@@ -313,6 +318,9 @@ async def handle_select_option_action(
)
return [ActionFailure(Exception(f"Cannot handle SelectOptionAction on a non-listbox element"))]
current_text = await locator.input_value()
if current_text == action.option.label:
return ActionSuccess()
try:
# First click by label (if it matches)
await page.click(f"xpath={xpath}", timeout=SettingsManager.get_settings().BROWSER_ACTION_TIMEOUT_MS)

View File

@@ -505,6 +505,9 @@ function buildTreeFromBody() {
const selectContainers = document.querySelectorAll(".select2-container");
selectContainers.forEach((element) => {
// hide the select2 container
element.style.display = "none";
// search select in previous
let _pre = element.previousElementSibling;
while (_pre) {
@@ -513,8 +516,6 @@ function buildTreeFromBody() {
_pre.style.display === "none"
) {
_pre.style.removeProperty("display");
// only hide the select2 container when an alternative select found
element.style.display = "none";
return;
}
_pre = _pre.previousElementSibling;
@@ -528,8 +529,6 @@ function buildTreeFromBody() {
_next.style.display === "none"
) {
_next.style.removeProperty("display");
// only hide the select2 container when an alternative select found
element.style.display = "none";
return;
}
_next = _next.nextElementSibling;