├── .gitignore ├── LICENSE ├── README.md ├── evals ├── in_domain_eval │ ├── __init__.py │ ├── actions.py │ ├── browser_agent.py │ ├── browser_env.py │ ├── constants.py │ ├── create_indomain_dataset.py │ ├── dataset.py │ ├── eval.py │ ├── gpt_task_completion_agent.py │ ├── parse_corrector_agent.py │ ├── processors.py │ ├── prompts │ │ ├── browser_example1.png │ │ ├── browser_example2.png │ │ ├── browser_example3.png │ │ ├── browser_example4.png │ │ ├── browser_example5.png │ │ ├── browser_example6.png │ │ ├── browser_example7.png │ │ ├── browser_example8.png │ │ ├── browser_example9.png │ │ ├── browser_prompt.py │ │ └── screenshot_som_0.png │ ├── requirements.txt │ ├── set_of_mark.py │ ├── trajectory_verifier.py │ └── utils.py ├── mind2web_live_eval │ ├── __init__.py │ ├── agent │ │ ├── Environment │ │ │ ├── __init__.py │ │ │ └── html_env │ │ │ │ ├── __init__.py │ │ │ │ ├── actions.py │ │ │ │ ├── actions_sync.py │ │ │ │ ├── active_elements.py │ │ │ │ ├── async_env.py │ │ │ │ ├── browser_env.py │ │ │ │ ├── build_tree.py │ │ │ │ ├── build_tree_sync.py │ │ │ │ ├── constants.py │ │ │ │ ├── page_script.js │ │ │ │ ├── processors.py │ │ │ │ ├── set_of_mark.py │ │ │ │ └── utils.py │ │ ├── LLM │ │ │ ├── __init__.py │ │ │ ├── claude.py │ │ │ ├── gemini.py │ │ │ ├── hf_models.py │ │ │ ├── llm_instance.py │ │ │ ├── openai.py │ │ │ ├── togetherai.py │ │ │ ├── token_cal.py │ │ │ └── utils_internvl.py │ │ ├── Plan │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ └── planning.py │ │ ├── Prompt │ │ │ ├── __init__.py │ │ │ ├── our_prompts.py │ │ │ └── prompt_constructor.py │ │ ├── Tool │ │ │ ├── __init__.py │ │ │ └── base_tools.py │ │ └── Utils │ │ │ ├── __init__.py │ │ │ └── utils.py │ ├── atomWorkflows.json │ ├── compute_results_website_subset.py │ ├── configs │ │ └── setting.toml │ ├── data │ │ ├── dataset_io.py │ │ ├── example │ │ │ ├── example_130.json │ │ │ └── mind2web-test_104tasks_20240528.json │ │ └── raw_data_processor.py │ ├── evaluate │ │ ├── __init__.py │ │ ├── evaluate_utils.py │ │ ├── evaluate_utils_sync.py │ │ ├── step_score.py │ │ └── task_score.py │ ├── evaluate_model.py │ ├── evaluate_model_sync.py │ ├── experiment_results.py │ ├── logs.py │ ├── m2w_live_valid_urls.json │ ├── requirements.txt │ └── scrapper.py ├── mind2web_orig_eval │ ├── __init__.py │ ├── compute_metrics.py │ ├── constants.py │ ├── eval.py │ ├── eval_utils.py │ ├── gpt_task_completion_agent.py │ ├── processors.py │ ├── requirements.txt │ ├── set_of_mark.py │ └── utils.py └── miniwob │ ├── LICENSE │ ├── README.md │ ├── actions.py │ ├── available_tasks.txt │ ├── browser_env.py │ ├── compute_overall_metric.py │ ├── computergym │ ├── .gitignore │ ├── README.md │ ├── computergym │ │ ├── __init__.py │ │ └── miniwob │ │ │ ├── base_env.py │ │ │ └── miniwob_interface │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── environment.py │ │ │ ├── fields.py │ │ │ ├── html │ │ │ ├── .gitignore │ │ │ ├── common │ │ │ │ ├── shapes.js │ │ │ │ ├── special │ │ │ │ │ ├── book-flight │ │ │ │ │ │ └── domestic.js │ │ │ │ │ ├── checkbox-numbers │ │ │ │ │ │ ├── ch_0.png │ │ │ │ │ │ ├── ch_1.png │ │ │ │ │ │ ├── ch_2.png │ │ │ │ │ │ ├── ch_3.png │ │ │ │ │ │ ├── ch_4.png │ │ │ │ │ │ ├── ch_5.png │ │ │ │ │ │ ├── ch_6.png │ │ │ │ │ │ ├── ch_7.png │ │ │ │ │ │ ├── ch_8.png │ │ │ │ │ │ └── ch_9.png │ │ │ │ │ ├── click-pie │ │ │ │ │ │ ├── raphael.icons.min.js │ │ │ │ │ │ ├── raphael.min.js │ │ │ │ │ │ └── wheelnav.min.js │ │ │ │ │ ├── drag-cube │ │ │ │ │ │ ├── blank.png │ │ │ │ │ │ ├── cube.css │ │ │ │ │ │ └── cube.js │ │ │ │ │ ├── email-inbox-nl │ │ │ │ │ │ └── templates.js │ │ │ │ │ ├── email-inbox │ │ │ │ │ │ ├── delete.png │ │ │ │ │ │ ├── email-inbox.css │ │ │ │ │ │ ├── forward.png │ │ │ │ │ │ ├── left-arrow-white.png │ │ │ │ │ │ ├── left-arrow.png │ │ │ │ │ │ ├── reply.png │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ ├── send.png │ │ │ │ │ │ ├── star-clicked.png │ │ │ │ │ │ └── star.png │ │ │ │ │ ├── navigate-tree │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ │ │ ├── file.gif │ │ │ │ │ │ │ ├── folder-closed.gif │ │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ │ ├── minus.gif │ │ │ │ │ │ │ ├── plus.gif │ │ │ │ │ │ │ ├── treeview-black-line.gif │ │ │ │ │ │ │ ├── treeview-black.gif │ │ │ │ │ │ │ ├── treeview-default-line.gif │ │ │ │ │ │ │ ├── treeview-default.gif │ │ │ │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ │ │ │ ├── treeview-gray.gif │ │ │ │ │ │ │ ├── treeview-red-line.gif │ │ │ │ │ │ │ └── treeview-red.gif │ │ │ │ │ │ ├── jquery.treeview.css │ │ │ │ │ │ └── jquery.treeview.min.js │ │ │ │ │ ├── search-engine │ │ │ │ │ │ └── jquery.twbsPagination.min.js │ │ │ │ │ ├── social-media │ │ │ │ │ │ ├── like-hover.png │ │ │ │ │ │ ├── like.png │ │ │ │ │ │ ├── more-hover.png │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ ├── reply-hover.png │ │ │ │ │ │ ├── reply.png │ │ │ │ │ │ ├── retweet-hover.png │ │ │ │ │ │ ├── retweet.png │ │ │ │ │ │ ├── share-hover.png │ │ │ │ │ │ └── share.png │ │ │ │ │ ├── text-editor │ │ │ │ │ │ ├── quill.min.js │ │ │ │ │ │ └── quill.snow.css │ │ │ │ │ └── tic-tac-toe │ │ │ │ │ │ ├── o.png │ │ │ │ │ │ └── x.png │ │ │ │ └── ui_utils.js │ │ │ ├── core │ │ │ │ ├── core.css │ │ │ │ ├── core.js │ │ │ │ ├── d3.v3.min.js │ │ │ │ ├── jquery-ui │ │ │ │ │ ├── external │ │ │ │ │ │ └── jquery │ │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ │ └── jquery-ui.theme.min.css │ │ │ │ ├── jscolor.min.js │ │ │ │ └── record.js │ │ │ ├── flight │ │ │ │ ├── AA │ │ │ │ │ ├── apps │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── aacom.js │ │ │ │ │ │ │ ├── aacomDevice.js │ │ │ │ │ │ │ ├── airportcode.js │ │ │ │ │ │ │ ├── cookieconsent.js │ │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ └── aacom │ │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ │ ├── aaAirportAutoComplete.js │ │ │ │ │ │ │ │ ├── aaCache.js │ │ │ │ │ │ │ │ ├── aaCookie.js │ │ │ │ │ │ │ │ ├── aaCountryLanSelect.js │ │ │ │ │ │ │ │ ├── aaDropdownPanel.js │ │ │ │ │ │ │ │ ├── aaFooterAds.js │ │ │ │ │ │ │ │ └── aaTextBoxMessage.js │ │ │ │ │ │ │ │ └── utilities │ │ │ │ │ │ │ │ ├── aaUtilities-2.1.js │ │ │ │ │ │ │ │ └── aaUtils.js │ │ │ │ │ │ │ └── wa.js │ │ │ │ │ ├── content │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ │ ├── core.css │ │ │ │ │ │ │ │ ├── jquery-ui-1.10-aa.css │ │ │ │ │ │ │ │ ├── reservation │ │ │ │ │ │ │ │ └── findFlights │ │ │ │ │ │ │ │ │ └── mobile │ │ │ │ │ │ │ │ │ └── findFlights.css │ │ │ │ │ │ │ │ └── responsive.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── american-v2 │ │ │ │ │ │ │ │ ├── americansans-bold.woff │ │ │ │ │ │ │ │ ├── americansans-light.woff │ │ │ │ │ │ │ │ ├── americansans-medium.woff │ │ │ │ │ │ │ │ └── americansans-regular.woff │ │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ │ └── american-icons-v4-4.woff │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── chrome │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ │ └── loading.gif │ │ │ │ │ │ │ └── rebrand │ │ │ │ │ │ │ │ ├── aa-flight-icon.png │ │ │ │ │ │ │ │ ├── aa-icons-flags-sprite.png │ │ │ │ │ │ │ │ ├── aa-logo.png │ │ │ │ │ │ │ │ ├── down-arrow.png │ │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ │ ├── oneworld.png │ │ │ │ │ │ │ │ ├── shadow-down.png │ │ │ │ │ │ │ │ ├── shadow-vertical-150.png │ │ │ │ │ │ │ │ ├── shadow12-down.png │ │ │ │ │ │ │ │ ├── shadow12-up.png │ │ │ │ │ │ │ │ └── shadow3-down.png │ │ │ │ │ │ │ └── graphics │ │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ └── aa-jqueryUIicons-sprite.png │ │ │ │ │ ├── dataset-AA.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── aa │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── aa-utility-menu.js │ │ │ │ │ │ │ │ ├── aacom-ui-1.0.0.js │ │ │ │ │ │ │ │ └── core-2.0.0.js │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ ├── airportLookup.js │ │ │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ │ │ ├── browserdetect.js │ │ │ │ │ │ │ │ ├── commonsetup.js │ │ │ │ │ │ │ │ ├── mobileDatePicker.js │ │ │ │ │ │ │ │ ├── utilities.js │ │ │ │ │ │ │ │ └── widgets.js │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ │ └── noBounce.js │ │ │ │ │ │ │ └── shopping │ │ │ │ │ │ │ │ └── mobileSearchFlights.js │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ │ │ │ ├── jquery-migrate-1.2.1.min.js │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── 1.10 │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ └── jquery.ui.datepicker-en-aa.js │ │ │ │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ │ │ │ └── modernizr-2.8.1.js │ │ │ │ │ ├── original.html │ │ │ │ │ ├── surrogate │ │ │ │ │ │ ├── airportLookup.js │ │ │ │ │ │ └── airports.json │ │ │ │ │ └── wrapper.html │ │ │ │ ├── Alaska-auto-medium │ │ │ │ │ ├── images │ │ │ │ │ │ ├── aura.png │ │ │ │ │ │ ├── cal3.png │ │ │ │ │ │ ├── chkboxes3.png │ │ │ │ │ │ ├── clear_text2.png │ │ │ │ │ │ ├── collapse.png │ │ │ │ │ │ ├── expand.png │ │ │ │ │ │ ├── flight_arrow.png │ │ │ │ │ │ ├── geo.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── info2.png │ │ │ │ │ │ ├── leftright.png │ │ │ │ │ │ ├── logo2.png │ │ │ │ │ │ └── logos │ │ │ │ │ │ │ ├── AA.png │ │ │ │ │ │ │ ├── AS.png │ │ │ │ │ │ │ ├── DL.png │ │ │ │ │ │ │ └── VX.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mobileweb-v3-28-6227-21813.css │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── datepickr.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── shopbook.js │ │ │ │ │ ├── stylesheets │ │ │ │ │ │ └── circular │ │ │ │ │ │ │ ├── ASCircularWeb-Bold.woff │ │ │ │ │ │ │ └── ASCircularWeb-Book.woff │ │ │ │ │ ├── surrogate │ │ │ │ │ │ ├── airportLookup.js │ │ │ │ │ │ └── airports.json │ │ │ │ │ └── wrapper.html │ │ │ │ ├── Alaska-auto │ │ │ │ │ ├── images │ │ │ │ │ │ ├── aura.png │ │ │ │ │ │ ├── cal3.png │ │ │ │ │ │ ├── chkboxes3.png │ │ │ │ │ │ ├── clear_text2.png │ │ │ │ │ │ ├── collapse.png │ │ │ │ │ │ ├── expand.png │ │ │ │ │ │ ├── flight_arrow.png │ │ │ │ │ │ ├── geo.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── info2.png │ │ │ │ │ │ ├── leftright.png │ │ │ │ │ │ ├── logo2.png │ │ │ │ │ │ └── logos │ │ │ │ │ │ │ ├── AA.png │ │ │ │ │ │ │ ├── AS.png │ │ │ │ │ │ │ ├── DL.png │ │ │ │ │ │ │ └── VX.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mobileweb-v3-28-6227-21813.css │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── datepickr.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── shopbook.js │ │ │ │ │ ├── stylesheets │ │ │ │ │ │ └── circular │ │ │ │ │ │ │ ├── ASCircularWeb-Bold.woff │ │ │ │ │ │ │ └── ASCircularWeb-Book.woff │ │ │ │ │ ├── surrogate │ │ │ │ │ │ ├── airportLookup.js │ │ │ │ │ │ └── airports.json │ │ │ │ │ └── wrapper.html │ │ │ │ ├── Alaska │ │ │ │ │ ├── dataset-Alaska.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── aura.png │ │ │ │ │ │ ├── cal3.png │ │ │ │ │ │ ├── chkboxes3.png │ │ │ │ │ │ ├── clear_text2.png │ │ │ │ │ │ ├── collapse.png │ │ │ │ │ │ ├── expand.png │ │ │ │ │ │ ├── flight_arrow.png │ │ │ │ │ │ ├── geo.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── info2.png │ │ │ │ │ │ ├── leftright.png │ │ │ │ │ │ ├── logo2.png │ │ │ │ │ │ └── logos │ │ │ │ │ │ │ ├── AA.png │ │ │ │ │ │ │ ├── AS.png │ │ │ │ │ │ │ ├── DL.png │ │ │ │ │ │ │ └── VX.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mobileweb-v3-28-6227-21813.css │ │ │ │ │ ├── original.html │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── datepickr.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── shopbook.js │ │ │ │ │ ├── stylesheets │ │ │ │ │ │ └── circular │ │ │ │ │ │ │ ├── ASCircularWeb-Bold.woff │ │ │ │ │ │ │ └── ASCircularWeb-Book.woff │ │ │ │ │ ├── surrogate │ │ │ │ │ │ ├── airportLookup.js │ │ │ │ │ │ └── airports.json │ │ │ │ │ └── wrapper.html │ │ │ │ └── flight-common │ │ │ │ │ ├── inject.js │ │ │ │ │ ├── wrapper.css │ │ │ │ │ └── wrapper.js │ │ │ └── miniwob │ │ │ │ ├── bisect-angle.html │ │ │ │ ├── book-flight-nodelay.html │ │ │ │ ├── book-flight.html │ │ │ │ ├── chase-circle.html │ │ │ │ ├── choose-date-easy.html │ │ │ │ ├── choose-date-medium.html │ │ │ │ ├── choose-date-nodelay.html │ │ │ │ ├── choose-date.html │ │ │ │ ├── choose-list.html │ │ │ │ ├── circle-center.html │ │ │ │ ├── click-button-sequence.html │ │ │ │ ├── click-button.html │ │ │ │ ├── click-checkboxes-large.html │ │ │ │ ├── click-checkboxes-soft.html │ │ │ │ ├── click-checkboxes-transfer.html │ │ │ │ ├── click-checkboxes.html │ │ │ │ ├── click-collapsible-2-nodelay.html │ │ │ │ ├── click-collapsible-2.html │ │ │ │ ├── click-collapsible-nodelay.html │ │ │ │ ├── click-collapsible.html │ │ │ │ ├── click-color.html │ │ │ │ ├── click-dialog-2.html │ │ │ │ ├── click-dialog.html │ │ │ │ ├── click-link.html │ │ │ │ ├── click-menu-2.html │ │ │ │ ├── click-menu.html │ │ │ │ ├── click-option.html │ │ │ │ ├── click-pie-nodelay.html │ │ │ │ ├── click-pie.html │ │ │ │ ├── click-scroll-list.html │ │ │ │ ├── click-shades.html │ │ │ │ ├── click-shape.html │ │ │ │ ├── click-tab-2-easy.html │ │ │ │ ├── click-tab-2-hard.html │ │ │ │ ├── click-tab-2-medium.html │ │ │ │ ├── click-tab-2.html │ │ │ │ ├── click-tab.html │ │ │ │ ├── click-test-2.html │ │ │ │ ├── click-test-transfer.html │ │ │ │ ├── click-test.html │ │ │ │ ├── click-widget.html │ │ │ │ ├── copy-paste-2.html │ │ │ │ ├── copy-paste.html │ │ │ │ ├── count-shape.html │ │ │ │ ├── count-sides.html │ │ │ │ ├── drag-box.html │ │ │ │ ├── drag-cube.html │ │ │ │ ├── drag-item.html │ │ │ │ ├── drag-items-grid.html │ │ │ │ ├── drag-items.html │ │ │ │ ├── drag-shapes.html │ │ │ │ ├── drag-sort-numbers.html │ │ │ │ ├── email-inbox-delete.html │ │ │ │ ├── email-inbox-forward-nl-turk.html │ │ │ │ ├── email-inbox-forward-nl.html │ │ │ │ ├── email-inbox-forward.html │ │ │ │ ├── email-inbox-important.html │ │ │ │ ├── email-inbox-nl-turk.html │ │ │ │ ├── email-inbox-noscroll.html │ │ │ │ ├── email-inbox-reply.html │ │ │ │ ├── email-inbox-star-reply.html │ │ │ │ ├── email-inbox.html │ │ │ │ ├── enter-date.html │ │ │ │ ├── enter-password.html │ │ │ │ ├── enter-text-2.html │ │ │ │ ├── enter-text-dynamic.html │ │ │ │ ├── enter-text.html │ │ │ │ ├── enter-time.html │ │ │ │ ├── find-midpoint.html │ │ │ │ ├── find-word.html │ │ │ │ ├── focus-text-2.html │ │ │ │ ├── focus-text.html │ │ │ │ ├── grid-coordinate.html │ │ │ │ ├── guess-number.html │ │ │ │ ├── highlight-text-2.html │ │ │ │ ├── highlight-text.html │ │ │ │ ├── identify-shape.html │ │ │ │ ├── login-user-popup.html │ │ │ │ ├── login-user.html │ │ │ │ ├── moving-items.html │ │ │ │ ├── multi-layouts.html │ │ │ │ ├── multi-orderings.html │ │ │ │ ├── navigate-tree.html │ │ │ │ ├── number-checkboxes.html │ │ │ │ ├── read-table-2.html │ │ │ │ ├── read-table.html │ │ │ │ ├── resize-textarea.html │ │ │ │ ├── right-angle.html │ │ │ │ ├── scroll-text-2.html │ │ │ │ ├── scroll-text.html │ │ │ │ ├── search-engine.html │ │ │ │ ├── simon-says.html │ │ │ │ ├── simple-algebra.html │ │ │ │ ├── simple-arithmetic.html │ │ │ │ ├── social-media-all.html │ │ │ │ ├── social-media-some.html │ │ │ │ ├── social-media.html │ │ │ │ ├── terminal.html │ │ │ │ ├── terminal_reproduce.html │ │ │ │ ├── text-editor.html │ │ │ │ ├── text-transform.html │ │ │ │ ├── tic-tac-toe.html │ │ │ │ ├── unicode-test.html │ │ │ │ ├── use-autocomplete-nodelay.html │ │ │ │ ├── use-autocomplete.html │ │ │ │ ├── use-colorwheel-2.html │ │ │ │ ├── use-colorwheel.html │ │ │ │ ├── use-slider-2.html │ │ │ │ ├── use-slider.html │ │ │ │ ├── use-spinner.html │ │ │ │ └── visual-addition.html │ │ │ ├── instance.py │ │ │ ├── reward.py │ │ │ ├── screenshot.py │ │ │ ├── state.py │ │ │ └── utils.py │ └── setup.py │ ├── eval-explorer.sh │ ├── exp.sh │ ├── llm_agent.py │ ├── log.txt │ ├── main_slm.py │ ├── main_slm_qwen.py │ ├── metrics.py │ ├── page_script.js │ ├── page_script_3.js │ ├── processors.py │ ├── requirements.txt │ ├── set_of_mark.py │ ├── slm_agent.py │ ├── slm_agent_qwen.py │ └── utils.py ├── train ├── train_qwen2vl.py └── train_utils.py └── traj_gen ├── README.md ├── actions.py ├── browser_env.py ├── captcha_detection_agent.py ├── constants.py ├── llm_utils.py ├── main.py ├── page_script.js ├── processors.py ├── requirements.txt ├── run_jobs.sh ├── set_of_mark.py ├── task_proposal_agent.py ├── task_refiner_agent.py ├── task_summarization_flow.py ├── trajectory_verifier.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *$py.class 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/README.md -------------------------------------------------------------------------------- /evals/in_domain_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evals/in_domain_eval/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/actions.py -------------------------------------------------------------------------------- /evals/in_domain_eval/browser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/browser_agent.py -------------------------------------------------------------------------------- /evals/in_domain_eval/browser_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/browser_env.py -------------------------------------------------------------------------------- /evals/in_domain_eval/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/constants.py -------------------------------------------------------------------------------- /evals/in_domain_eval/create_indomain_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/create_indomain_dataset.py -------------------------------------------------------------------------------- /evals/in_domain_eval/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/dataset.py -------------------------------------------------------------------------------- /evals/in_domain_eval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/eval.py -------------------------------------------------------------------------------- /evals/in_domain_eval/gpt_task_completion_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/gpt_task_completion_agent.py -------------------------------------------------------------------------------- /evals/in_domain_eval/parse_corrector_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/parse_corrector_agent.py -------------------------------------------------------------------------------- /evals/in_domain_eval/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/processors.py -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example1.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example2.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example3.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example4.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example5.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example6.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example7.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example8.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_example9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_example9.png -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/browser_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/browser_prompt.py -------------------------------------------------------------------------------- /evals/in_domain_eval/prompts/screenshot_som_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/prompts/screenshot_som_0.png -------------------------------------------------------------------------------- /evals/in_domain_eval/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/requirements.txt -------------------------------------------------------------------------------- /evals/in_domain_eval/set_of_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/set_of_mark.py -------------------------------------------------------------------------------- /evals/in_domain_eval/trajectory_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/trajectory_verifier.py -------------------------------------------------------------------------------- /evals/in_domain_eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/in_domain_eval/utils.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/__init__.py: -------------------------------------------------------------------------------- 1 | from .html_env import * 2 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/__init__.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/actions.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/actions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/actions_sync.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/active_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/active_elements.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/async_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/async_env.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/browser_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/browser_env.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/build_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/build_tree.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/build_tree_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/build_tree_sync.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/constants.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/page_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/page_script.js -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/processors.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/set_of_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/set_of_mark.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Environment/html_env/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Environment/html_env/utils.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/__init__.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/claude.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/gemini.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/hf_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/hf_models.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/llm_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/llm_instance.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/openai.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/togetherai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/togetherai.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/token_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/token_cal.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/LLM/utils_internvl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/LLM/utils_internvl.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Plan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Plan/__init__.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Plan/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Plan/action.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Plan/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Plan/planning.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Prompt/__init__.py: -------------------------------------------------------------------------------- 1 | from .prompt_constructor import * 2 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Prompt/our_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Prompt/our_prompts.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Prompt/prompt_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Prompt/prompt_constructor.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Tool/__init__.py: -------------------------------------------------------------------------------- 1 | from .base_tools import * 2 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Tool/base_tools.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * 2 | -------------------------------------------------------------------------------- /evals/mind2web_live_eval/agent/Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/agent/Utils/utils.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/atomWorkflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/atomWorkflows.json -------------------------------------------------------------------------------- /evals/mind2web_live_eval/compute_results_website_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/compute_results_website_subset.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/configs/setting.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/configs/setting.toml -------------------------------------------------------------------------------- /evals/mind2web_live_eval/data/dataset_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/data/dataset_io.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/data/example/example_130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/data/example/example_130.json -------------------------------------------------------------------------------- /evals/mind2web_live_eval/data/example/mind2web-test_104tasks_20240528.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/data/example/mind2web-test_104tasks_20240528.json -------------------------------------------------------------------------------- /evals/mind2web_live_eval/data/raw_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/data/raw_data_processor.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate/__init__.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate/evaluate_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate/evaluate_utils.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate/evaluate_utils_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate/evaluate_utils_sync.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate/step_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate/step_score.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate/task_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate/task_score.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate_model.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/evaluate_model_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/evaluate_model_sync.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/experiment_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/experiment_results.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/logs.py -------------------------------------------------------------------------------- /evals/mind2web_live_eval/m2w_live_valid_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/m2w_live_valid_urls.json -------------------------------------------------------------------------------- /evals/mind2web_live_eval/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/requirements.txt -------------------------------------------------------------------------------- /evals/mind2web_live_eval/scrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_live_eval/scrapper.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/compute_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/compute_metrics.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/constants.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/eval.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/eval_utils.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/gpt_task_completion_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/gpt_task_completion_agent.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/processors.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/requirements.txt -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/set_of_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/set_of_mark.py -------------------------------------------------------------------------------- /evals/mind2web_orig_eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/mind2web_orig_eval/utils.py -------------------------------------------------------------------------------- /evals/miniwob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/LICENSE -------------------------------------------------------------------------------- /evals/miniwob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/README.md -------------------------------------------------------------------------------- /evals/miniwob/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/actions.py -------------------------------------------------------------------------------- /evals/miniwob/available_tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/available_tasks.txt -------------------------------------------------------------------------------- /evals/miniwob/browser_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/browser_env.py -------------------------------------------------------------------------------- /evals/miniwob/compute_overall_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/compute_overall_metric.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/.gitignore -------------------------------------------------------------------------------- /evals/miniwob/computergym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/README.md -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/__init__.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/base_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/base_env.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/action.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/environment.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/fields.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/.gitignore: -------------------------------------------------------------------------------- 1 | twistd.pid 2 | -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/shapes.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/book-flight/domestic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/book-flight/domestic.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_0.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_1.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_4.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_5.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_6.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_7.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_8.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/checkbox-numbers/ch_9.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/raphael.icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/raphael.icons.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/raphael.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/wheelnav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/click-pie/wheelnav.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/blank.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/cube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/cube.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/cube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/drag-cube/cube.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox-nl/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox-nl/templates.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/delete.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/email-inbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/email-inbox.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/forward.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/left-arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/left-arrow-white.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/left-arrow.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/reply.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/search.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/send.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/star-clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/star-clicked.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/email-inbox/star.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/ajax-loader.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/file.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/folder-closed.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/folder.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/minus.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/plus.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-black-line.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-black.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-default-line.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-default.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-famfamfam.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-gray-line.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-gray.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-red-line.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/images/treeview-red.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/jquery.treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/jquery.treeview.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/jquery.treeview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/navigate-tree/jquery.treeview.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/search-engine/jquery.twbsPagination.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/search-engine/jquery.twbsPagination.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/like-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/like-hover.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/like.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/more-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/more-hover.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/more.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/reply-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/reply-hover.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/reply.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/retweet-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/retweet-hover.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/retweet.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/share-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/share-hover.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/social-media/share.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/text-editor/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/text-editor/quill.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/text-editor/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/text-editor/quill.snow.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/tic-tac-toe/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/tic-tac-toe/o.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/tic-tac-toe/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/special/tic-tac-toe/x.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/ui_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/common/ui_utils.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/core.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/core.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/d3.v3.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/external/jquery/jquery.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jscolor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/jscolor.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/core/record.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/aacom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/aacom.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/aacomDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/aacomDevice.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/airportcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/airportcode.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/cookieconsent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/cookieconsent.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaAirportAutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaAirportAutoComplete.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCache.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCookie.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCountryLanSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaCountryLanSelect.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaDropdownPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaDropdownPanel.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaFooterAds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaFooterAds.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaTextBoxMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/plugins/aaTextBoxMessage.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/utilities/aaUtilities-2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/utilities/aaUtilities-2.1.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/utilities/aaUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/jquery/aacom/utilities/aaUtils.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/wa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/apps/common/js/wa.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/core.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/jquery-ui-1.10-aa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/jquery-ui-1.10-aa.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/reservation/findFlights/mobile/findFlights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/reservation/findFlights/mobile/findFlights.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/common/css/v3/responsive.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-bold.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-light.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-medium.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/american-v2/americansans-regular.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/icons/american-icons-v4-4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/fonts/icons/american-icons-v4-4.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/icons/loading.gif -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-flight-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-flight-icon.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-icons-flags-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-icons-flags-sprite.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/aa-logo.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/down-arrow.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/favicon.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/oneworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/oneworld.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow-down.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow-vertical-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow-vertical-150.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow12-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow12-down.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow12-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow12-up.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow3-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/chrome/rebrand/shadow3-down.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/graphics/icons/aa-jqueryUIicons-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/content/images/graphics/icons/aa-jqueryUIicons-sprite.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/dataset-AA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/dataset-AA.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/index.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/aa-utility-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/aa-utility-menu.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/aacom-ui-1.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/aacom-ui-1.0.0.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/core-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/common/core-2.0.0.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/airportLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/airportLookup.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/ajax.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/browserdetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/browserdetect.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/commonsetup.js: -------------------------------------------------------------------------------- 1 | AAcom.modules.commonsetup=function(AAUI){/* NOT NEEDED */}; 2 | -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/mobileDatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/mobileDatePicker.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/utilities.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/modules/widgets.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/plugins/noBounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/plugins/noBounce.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/shopping/mobileSearchFlights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/aa/shopping/mobileSearchFlights.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/jquery-migrate-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/jquery-migrate-1.2.1.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/ui/1.10/i18n/jquery.ui.datepicker-en-aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/ui/1.10/i18n/jquery.ui.datepicker-en-aa.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/ui/1.10/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/jquery/ui/1.10/jquery-ui.min.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/modernizr-2.8.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/js/libs/modernizr-2.8.1.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/original.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/surrogate/airportLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/surrogate/airportLookup.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/surrogate/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/surrogate/airports.json -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/AA/wrapper.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/aura.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/cal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/cal3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/chkboxes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/chkboxes3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/clear_text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/clear_text2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/collapse.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/expand.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/flight_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/flight_arrow.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/geo.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/home.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/info2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/info2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/leftright.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logo2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/AA.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/AS.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/DL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/DL.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/VX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/images/logos/VX.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/index.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/mobileweb-v3-28-6227-21813.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/mobileweb-v3-28-6227-21813.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/datepickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/datepickr.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/main.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/shopbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/scripts/shopbook.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/stylesheets/circular/ASCircularWeb-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/stylesheets/circular/ASCircularWeb-Bold.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/stylesheets/circular/ASCircularWeb-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/stylesheets/circular/ASCircularWeb-Book.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/surrogate/airportLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/surrogate/airportLookup.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/surrogate/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/surrogate/airports.json -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto-medium/wrapper.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/aura.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/cal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/cal3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/chkboxes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/chkboxes3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/clear_text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/clear_text2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/collapse.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/expand.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/flight_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/flight_arrow.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/geo.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/home.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/info2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/info2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/leftright.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logo2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/AA.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/AS.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/DL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/DL.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/VX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/images/logos/VX.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/index.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/mobileweb-v3-28-6227-21813.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/mobileweb-v3-28-6227-21813.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/datepickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/datepickr.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/main.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/shopbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/scripts/shopbook.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/stylesheets/circular/ASCircularWeb-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/stylesheets/circular/ASCircularWeb-Bold.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/stylesheets/circular/ASCircularWeb-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/stylesheets/circular/ASCircularWeb-Book.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/surrogate/airportLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/surrogate/airportLookup.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/surrogate/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/surrogate/airports.json -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska-auto/wrapper.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/dataset-Alaska.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/dataset-Alaska.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/aura.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/cal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/cal3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/chkboxes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/chkboxes3.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/clear_text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/clear_text2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/collapse.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/expand.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/flight_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/flight_arrow.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/geo.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/home.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/info2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/info2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/leftright.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logo2.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/AA.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/AS.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/DL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/DL.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/VX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/images/logos/VX.png -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/index.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/mobileweb-v3-28-6227-21813.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/mobileweb-v3-28-6227-21813.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/original.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/datepickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/datepickr.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/main.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/shopbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/scripts/shopbook.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/stylesheets/circular/ASCircularWeb-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/stylesheets/circular/ASCircularWeb-Bold.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/stylesheets/circular/ASCircularWeb-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/stylesheets/circular/ASCircularWeb-Book.woff -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/surrogate/airportLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/surrogate/airportLookup.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/surrogate/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/surrogate/airports.json -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/Alaska/wrapper.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/inject.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/wrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/wrapper.css -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/flight/flight-common/wrapper.js -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/bisect-angle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/bisect-angle.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/book-flight-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/book-flight-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/book-flight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/book-flight.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/chase-circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/chase-circle.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-easy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-easy.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-medium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-medium.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-date.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/choose-list.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/circle-center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/circle-center.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-button-sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-button-sequence.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-button.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-large.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-soft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-soft.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes-transfer.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-checkboxes.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-2-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-2-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-collapsible.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-color.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-dialog-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-dialog-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-dialog.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-link.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-menu-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-menu-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-menu.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-option.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-pie-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-pie-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-pie.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-scroll-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-scroll-list.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-shades.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-shades.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-shape.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-easy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-easy.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-hard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-hard.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-medium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2-medium.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-tab.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test-transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test-transfer.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-test.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/click-widget.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/copy-paste-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/copy-paste-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/copy-paste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/copy-paste.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/count-shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/count-shape.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/count-sides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/count-sides.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-box.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-cube.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-item.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-items-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-items-grid.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-items.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-shapes.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-sort-numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/drag-sort-numbers.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-delete.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward-nl-turk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward-nl-turk.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward-nl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward-nl.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-forward.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-important.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-important.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-nl-turk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-nl-turk.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-noscroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-noscroll.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-reply.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-star-reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox-star-reply.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/email-inbox.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-date.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-password.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text-dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text-dynamic.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-text.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/enter-time.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/find-midpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/find-midpoint.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/find-word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/find-word.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/focus-text-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/focus-text-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/focus-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/focus-text.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/grid-coordinate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/grid-coordinate.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/guess-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/guess-number.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/highlight-text-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/highlight-text-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/highlight-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/highlight-text.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/identify-shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/identify-shape.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/login-user-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/login-user-popup.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/login-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/login-user.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/moving-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/moving-items.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/multi-layouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/multi-layouts.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/multi-orderings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/multi-orderings.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/navigate-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/navigate-tree.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/number-checkboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/number-checkboxes.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/read-table-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/read-table-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/read-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/read-table.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/resize-textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/resize-textarea.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/right-angle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/right-angle.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/scroll-text-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/scroll-text-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/scroll-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/scroll-text.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/search-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/search-engine.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simon-says.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simon-says.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simple-algebra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simple-algebra.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simple-arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/simple-arithmetic.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media-all.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media-some.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media-some.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/social-media.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/terminal.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/terminal_reproduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/terminal_reproduce.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/text-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/text-editor.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/text-transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/text-transform.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/tic-tac-toe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/tic-tac-toe.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/unicode-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/unicode-test.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-autocomplete-nodelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-autocomplete-nodelay.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-autocomplete.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-colorwheel-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-colorwheel-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-colorwheel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-colorwheel.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-slider-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-slider-2.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-slider.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-spinner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/use-spinner.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/visual-addition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/html/miniwob/visual-addition.html -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/instance.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/reward.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/screenshot.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/state.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/computergym/miniwob/miniwob_interface/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/computergym/miniwob/miniwob_interface/utils.py -------------------------------------------------------------------------------- /evals/miniwob/computergym/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/computergym/setup.py -------------------------------------------------------------------------------- /evals/miniwob/eval-explorer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/eval-explorer.sh -------------------------------------------------------------------------------- /evals/miniwob/exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/exp.sh -------------------------------------------------------------------------------- /evals/miniwob/llm_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/llm_agent.py -------------------------------------------------------------------------------- /evals/miniwob/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/log.txt -------------------------------------------------------------------------------- /evals/miniwob/main_slm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/main_slm.py -------------------------------------------------------------------------------- /evals/miniwob/main_slm_qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/main_slm_qwen.py -------------------------------------------------------------------------------- /evals/miniwob/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/metrics.py -------------------------------------------------------------------------------- /evals/miniwob/page_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/page_script.js -------------------------------------------------------------------------------- /evals/miniwob/page_script_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/page_script_3.js -------------------------------------------------------------------------------- /evals/miniwob/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/processors.py -------------------------------------------------------------------------------- /evals/miniwob/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/requirements.txt -------------------------------------------------------------------------------- /evals/miniwob/set_of_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/set_of_mark.py -------------------------------------------------------------------------------- /evals/miniwob/slm_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/slm_agent.py -------------------------------------------------------------------------------- /evals/miniwob/slm_agent_qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/slm_agent_qwen.py -------------------------------------------------------------------------------- /evals/miniwob/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/evals/miniwob/utils.py -------------------------------------------------------------------------------- /train/train_qwen2vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/train/train_qwen2vl.py -------------------------------------------------------------------------------- /train/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/train/train_utils.py -------------------------------------------------------------------------------- /traj_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/README.md -------------------------------------------------------------------------------- /traj_gen/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/actions.py -------------------------------------------------------------------------------- /traj_gen/browser_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/browser_env.py -------------------------------------------------------------------------------- /traj_gen/captcha_detection_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/captcha_detection_agent.py -------------------------------------------------------------------------------- /traj_gen/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/constants.py -------------------------------------------------------------------------------- /traj_gen/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/llm_utils.py -------------------------------------------------------------------------------- /traj_gen/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/main.py -------------------------------------------------------------------------------- /traj_gen/page_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/page_script.js -------------------------------------------------------------------------------- /traj_gen/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/processors.py -------------------------------------------------------------------------------- /traj_gen/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/requirements.txt -------------------------------------------------------------------------------- /traj_gen/run_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/run_jobs.sh -------------------------------------------------------------------------------- /traj_gen/set_of_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/set_of_mark.py -------------------------------------------------------------------------------- /traj_gen/task_proposal_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/task_proposal_agent.py -------------------------------------------------------------------------------- /traj_gen/task_refiner_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/task_refiner_agent.py -------------------------------------------------------------------------------- /traj_gen/task_summarization_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/task_summarization_flow.py -------------------------------------------------------------------------------- /traj_gen/trajectory_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/trajectory_verifier.py -------------------------------------------------------------------------------- /traj_gen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSU-NLP-Group/Explorer/HEAD/traj_gen/utils.py --------------------------------------------------------------------------------