Skip to content

Commit

Permalink
wait 5s for options to show up (#1153)
Browse files Browse the repository at this point in the history
  • Loading branch information
LawyZheng authored Nov 7, 2024
1 parent c531f9b commit f7c9dc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skyvern/webeye/actions/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,9 +832,9 @@ async def handle_select_option_action(
await skyvern_element.scroll_into_view()
await skyvern_element.press_key("ArrowDown")

# wait 5s for options to load
await asyncio.sleep(5)
is_open = True
# wait 5s for options to load
await asyncio.sleep(5)
is_open = True

incremental_element = await incremental_scraped.get_incremental_element_tree(
clean_and_remove_element_tree_factory(task=task, step=step, check_exist_funcs=[dom.check_id_in_dom]),
Expand Down

0 comments on commit f7c9dc2

Please sign in to comment.