This commit is contained in:
Oriana Riva 2021-04-27 12:28:40 -07:00 коммит произвёл oriana
Родитель b1a6a28878
Коммит aa0d1668bb
187 изменённых файлов: 13109 добавлений и 33 удалений

132
.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,132 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
.idea
output
resources/chromedriver*

Просмотреть файл

@ -1,33 +1,53 @@
# Project
> This repo has been populated by an initial template to help get you started. Please
> make sure to update the content to build a great experience for community-building.
As the maintainer of this project, please make a few updates:
- Improving this README.MD file to provide a great experience
- Updating SUPPORT.MD with content about this project's support experience
- Understanding the security reporting process in SECURITY.MD
- Remove this section from the README
## Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
## Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
trademarks or logos is subject to and must follow
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
Any use of third-party trademarks or logos are subject to those third-party's policies.
# Glider: A reinforcement learning approach to extract UI scripts from websites
This repository contains the code and data for the models and experiments described in "Glider: A reinforcement learning approach to extract UI scripts from websites" by Yuanchun Li and Oriana Riva, which was accepted at the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2021).
## About
Glider is a tool to extract UI scripts from the web. Given a website URL (e.g., http://www.unitconversion.org/) and a task description (e.g., “convert length 7333 from inch to foot”), Glider explores the website's UI to identify a sequence of UI actions (click, type, select, etc.) to complete the given task.
## In this repository
- `data` directory contains the sample tasks we created for the experiments.
- Each file is a json file containing the website URL, query, query annotations, etc. To define your own task, simply create a similar task file and fill in the `start_url`, `query_words` and `query_annotations` fields.
- For each task we have created a demonstration useful to verify whether the extracted UI script is correct. For some tasks, we also include several fields (e.g., `target_url`, `target_text_res`, etc.) used to more reliably verify whether the task completed correctly. However, both the demonstration and target matching rules are not the only indicators of task completion because there might be other ways to complete the task.
- `src` directory contains the code of Glider, including the scripts to crawl tasklets, randomly explore websites, record/replay demonstrations, etc.
- `config` directory contains sample configuration files to run the tests.
## Setup
- Install Python 3.6
- Install the Chrome browser and web driver
- Simply install the Chrome web browser application. On a Linux machine, install chromium with `apt install chromium-browser`
- Download the Chrome web driver from https://chromedriver.chromium.org/downloads and place it in the `src/resources` directory.
- The web drivers should be named as:
- `src/resources/chromedriver_linux64`
- `src/resources/chromedriver_mac64`
- `src/resources/chromedriver_win32.exe`
- Install required Python packages
- `pip install -r requirements.txt`
- `python -m spacy download en_core_web_lg`
## Usage
To crawl web automation scripts:
1. Add the task definitions into the `data/tasks` directory.
2. Edit the configuration file in the `configs` directory. In the config file, the `test_tasks` field is used to specify the task descriptions saved in the `data/tasks` directory.
3. Start crawling using the `run.py` file. An example command line is:
```
cd glider/src
python run.py --config_path ../configs/unit_conversion.json
```
If you use any of the materials in this repository, please cite the following paper.
```
@inproceedings{glider:sigir21,
title = {Glider: A reinforcement learning approach to extract {UI} scripts from websites},
author = {Yuanchun Li and Oriana Riva},
booktitle = {44th International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 2021)},
year = {2021},
}
```

8
configs/academic.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["academic_"]
}

8
configs/dictionary.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["dictionary_"]
}

8
configs/flight.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["flight_"]
}

8
configs/library.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["library_"]
}

14
configs/minitest.json Normal file
Просмотреть файл

@ -0,0 +1,14 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": [
"shopping__find_women_shoes_www.amazon.com_*",
"travel__get_direction_walk_www.google.com_*",
"flight__roundtrip_www.aa.com_*",
"movie__ticket_place_https://www.fandango.com_*",
"unit_conversion__convert_length_www.digitaldutch.com_*"
]
}

8
configs/real_estate.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["real_estate_"]
}

8
configs/restaurant.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["restaurant_"]
}

8
configs/search.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["search_engine_"]
}

8
configs/shopping.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["shopping_"]
}

8
configs/travel.json Normal file
Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["travel_"]
}

Просмотреть файл

@ -0,0 +1,8 @@
{
"feature_cache_size": 5000,
"n_backup_episodes": 50,
"n_train_episodes": 200,
"n_test_episodes": 100,
"train_tasks": [".*"],
"test_tasks": ["unit_conversion_"]
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://academic.microsoft.com/",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]",
"press_enter ## @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://academic.microsoft.com/search?q=neural%20networks&f=&orderBy=0&skip=0&take=10",
"target_url_res": [
"search?q=neural%20networks",
"orderBy=0"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "http://citeseerx.ist.psu.edu/index",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "http://citeseerx.ist.psu.edu/search;jsessionid=BDE25327925E7131CC00BA6D18DE8699?q=neural+networks&submit.x=0&submit.y=0&sort=rlv&t=doc",
"target_url_res": [
"q=neural+networks",
"search"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://dl.acm.org/",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"header\")/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1]",
"press_enter ## @ id(\"header\")/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://dl.acm.org/results.cfm?query=neural+networks&Go.x=0&Go.y=0",
"target_url_res": [
"results.cfm?",
"query=neural+networks"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://ieeexplore.ieee.org",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"input-basic\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[1]/div[1]/input[1]",
"press_enter ## @ id(\"input-basic\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&queryText=neural%20networks",
"target_url_res": [
"queryText=neural%20networks",
"search"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://newcatalog.library.cornell.edu/",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"q\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"q\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"catalog",
"q=neural+networks"
],
"target_url": "https://newcatalog.library.cornell.edu/catalog?utf8=%E2%9C%93&controller=catalog&action=index&q=neural+networks&search_field=all_fields",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://scholar.google.com/",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"gs_hdr_tsi\") || /html[1]/body[1]/div[1]/div[7]/div[1]/div[2]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"gs_hdr_tsi\") || /html[1]/body[1]/div[1]/div[7]/div[1]/div[2]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://scholar.google.com/scholar?hl=en&as_sdt=0%2C48&q=neural+networks&btnG=",
"target_url_res": [
"scholar?",
"q=neural+networks"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "https://searchit.libraries.wsu.edu/",
"query_words": [
"find",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"searchBar\") || /html[1]/body[1]/primo-explore[1]/div[1]/prm-explore-main[1]/div[1]/prm-search-bar[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/prm-autocomplete[1]/md-autocomplete-wrap[1]/input[1]",
"press_enter ## @ id(\"searchBar\") || /html[1]/body[1]/primo-explore[1]/div[1]/prm-explore-main[1]/div[1]/prm-search-bar[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/prm-autocomplete[1]/md-autocomplete-wrap[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"search?",
"contains,neural"
],
"target_url": "https://searchit.libraries.wsu.edu/primo-explore/search?query=any,contains,neural%20networks&tab=default_tab&search_scope=WSU_everything&vid=WSU&offset=0",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://dl.acm.org/",
"query_words": [
"find",
"journal",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"article type",
"",
"",
"topic"
],
"demonstration": [
"click ## @ /html[1]/body[1]/div[2]/div[2]/table[1]/tbody[1]/tr[1]/td[1]/table[1]/tbody[1]/tr[1]/td[6]/table[1]/tbody[1]/tr[2]/td[1]/ul[1]/li[2]/a[1] || /html[1]/body[1]/div[2]/div[2]/table[1]/tbody[1]/tr[1]/td[1]/table[1]/tbody[1]/tr[1]/td[6]/table[1]/tbody[1]/tr[2]/td[1]/ul[1]/li[2]/a[1]",
"input_text #neural networks# @ /html[1]/body[1]/div[2]/div[4]/form[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[4]/form[1]/label[1]/input[1]",
"press_enter ## @ /html[1]/body[1]/div[2]/div[4]/form[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[4]/form[1]/label[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://dl.acm.org/results.cfm?within=acmPubGroups.acmPubGroup%3DJournal&withindisp=ACM+Journals&query=neural+networks&Go.x=0&Go.y=0",
"target_url_res": [
"Journal",
"query=neural+networks"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "https://ieeexplore.ieee.org",
"query_words": [
"find",
"conference",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"article type",
"",
"",
"topic"
],
"demonstration": [
"select #2# @ id(\"LayoutWrapper\")/div[1]/div[1]/div[1]/div[4]/div[2]/select[1] || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/select[1]",
"input_text #neural networks# @ id(\"conf_title\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[4]/div[1]/input[1]",
"press_enter ## @ id(\"conf_title\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[4]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"queryText=neural%20networks",
"searchresult.jsp",
"contentType=conferences"
],
"target_url": "https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&contentType=conferences&queryText=neural%20networks",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://newcatalog.library.cornell.edu/",
"query_words": [
"find",
"journal",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"article type",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"q\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]",
"select #3# @ id(\"search_field\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/form[1]/div[2]/select[1]",
"press_enter ## @ id(\"q\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://newcatalog.library.cornell.edu/catalog?utf8=%E2%9C%93&controller=catalog&action=index&q=neural+networks&search_field=journal+title",
"target_url_res": [
"search_field=journal",
"q=neural+networks"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://searchit.libraries.wsu.edu/",
"query_words": [
"find",
"conferences",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"article type",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ id(\"searchBar\") || /html[1]/body[1]/primo-explore[1]/div[1]/prm-explore-main[1]/div[1]/prm-search-bar[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/prm-autocomplete[1]/md-autocomplete-wrap[1]/input[1]",
"press_enter ## @ id(\"searchBar\") || /html[1]/body[1]/primo-explore[1]/div[1]/prm-explore-main[1]/div[1]/prm-search-bar[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/prm-autocomplete[1]/md-autocomplete-wrap[1]/input[1]",
"click ## @ id(\"facets\")/prm-facet[1]/div[1]/div[1]/div[5]/prm-facet-group[1]/div[1]/prm-facet-exact[1]/div[2]/div[1]/div[2]/div[1]/strong[1] || /html[1]/body[1]/primo-explore[1]/div[1]/prm-explore-main[1]/ui-view[1]/prm-search[1]/div[1]/md-content[1]/div[2]/prm-facet[1]/div[1]/div[1]/div[5]/prm-facet-group[1]/div[1]/prm-facet-exact[1]/div[2]/div[1]/div[2]/div[1]/strong[1]"
],
"target_text_res": [],
"target_url_res": [
"conference_proceeding",
"contains,neural%20networks"
],
"target_url": "https://searchit.libraries.wsu.edu/primo-explore/search?query=any,contains,neural%20networks&tab=default_tab&search_scope=WSU_everything&vid=WSU&facet=rtype,include,conference_proceedings&offset=0",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,28 @@
{
"start_url": "https://academic.microsoft.com/",
"query_words": [
"find",
"citations",
"of",
"ImageNet: A Large-Scale Hierarchical Image Database"
],
"query_annotations": [
"",
"link",
"",
"title"
],
"demonstration": [
"input_text #ImageNet: A Large-Scale Hierarchical Image Database# @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]",
"press_enter ## @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]",
"click ## @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-serp[1]/div[1]/div[2]/div[1]/compose[1]/div[1]/div[2]/ma-card[1]/div[1]/compose[1]/div[1]/div[2]/span[1]/ma-call-to-action[2]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-serp[1]/div[1]/div[2]/div[1]/compose[1]/div[1]/div[2]/ma-card[1]/div[1]/compose[1]/div[1]/div[2]/span[1]/ma-call-to-action[2]/a[1]"
],
"target_text_res": [],
"target_url": "https://academic.microsoft.com/search?q=ImageNet%3A%20A%20Large-Scale%20Hierarchical%20Image%20Database&f=&orderBy=0&skip=0&take=10",
"target_url_res": [
"paper/2108598243",
"q=ImageNet",
"citedby"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,26 @@
{
"start_url": "http://citeseerx.ist.psu.edu/index",
"query_words": [
"find",
"citations",
"of",
"ImageNet: A Large-Scale Hierarchical Image Database"
],
"query_annotations": [
"",
"link",
"",
"title"
],
"demonstration": [
"input_text #ImageNet: A Large-Scale Hierarchical Image Database# @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]",
"click ## @ id(\"result_list\")/div[1]/div[3]/a[2] || /html[1]/body[1]/div[1]/div[3]/div[2]/div[3]/div[1]/div[3]/a[2]"
],
"target_text_res": [],
"target_url_res": [
"showciting?cid=9906740"
],
"target_url": "http://citeseerx.ist.psu.edu/showciting?cid=9906740",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,27 @@
{
"start_url": "https://ieeexplore.ieee.org",
"query_words": [
"find",
"citations",
"of",
"ImageNet: A Large-Scale Hierarchical Image Database"
],
"query_annotations": [
"",
"link",
"",
"title"
],
"demonstration": [
"input_text #ImageNet: A Large-Scale Hierarchical Image Database# @ id(\"input-basic\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[1]/div[1]/input[1]",
"press_enter ## @ id(\"input-basic\") || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[4]/div[2]/form[1]/div[2]/div[1]/fieldset[1]/div[1]/input[1]",
"click ## @ id(\"xplMainContent\")/div[2]/div[2]/xpl-results-list[1]/div[3]/xpl-results-item[1]/div[1]/div[2]/div[1]/div[2]/span[1]/a[1] || /html[1]/body[1]/div[4]/div[1]/div[1]/div[1]/div[5]/div[2]/xpl-root[1]/xpl-search-results[1]/main[1]/div[2]/div[2]/xpl-results-list[1]/div[3]/xpl-results-item[1]/div[1]/div[2]/div[1]/div[2]/span[1]/a[1]"
],
"target_text_res": [],
"target_url": "https://ieeexplore.ieee.org/document/5206848/citations?tabFilter=papers#citations",
"target_url_res": [
"document/5206848",
"citations?"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,27 @@
{
"start_url": "https://scholar.google.com/",
"query_words": [
"find",
"citations",
"of",
"ImageNet: A Large-Scale Hierarchical Image Database"
],
"query_annotations": [
"",
"link",
"",
"title"
],
"demonstration": [
"input_text #ImageNet: A Large-Scale Hierarchical Image Database# @ id(\"gs_hdr_tsi\") || /html[1]/body[1]/div[1]/div[7]/div[1]/div[2]/form[1]/div[1]/input[1]",
"click ## @ id(\"gs_hdr_tsb\") || /html[1]/body[1]/div[1]/div[7]/div[1]/div[2]/form[1]/button[1]",
"click ## @ id(\"gs_res_ccl_mid\")/div[1]/div[2]/div[3]/a[3] || /html[1]/body[1]/div[1]/div[11]/div[2]/div[2]/div[2]/div[1]/div[2]/div[3]/a[3]"
],
"target_text_res": [],
"target_url": "https://scholar.google.com/scholar?cites=610894740843277394&as_sdt=5,48&sciodt=0,48&hl=en",
"target_url_res": [
"scholar?",
"cites=610894740843277394"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "https://academic.microsoft.com/",
"query_words": [
"find",
"journal",
"articles",
"on",
"neural networks"
],
"query_annotations": [
"",
"article type",
"",
"",
"topic"
],
"demonstration": [
"input_text #neural networks# @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]",
"press_enter ## @ /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-hp[1]/div[1]/div[1]/div[1]/compose[1]/div[2]/div[1]/ma-suggestion-control[1]/div[1]/div[1]/input[1]",
"click ## @ id(\"sortBy\")/div[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-serp[1]/div[1]/div[2]/div[1]/compose[1]/div[1]/div[1]/ma-dropdown[1]/div[1]",
"click ## @ id(\"sortBy\")/div[1]/div[2]/div[3] || /html[1]/body[1]/div[2]/div[1]/div[1]/router-view[1]/ma-serp[1]/div[1]/div[2]/div[1]/compose[1]/div[1]/div[1]/ma-dropdown[1]/div[1]/div[2]/div[3]"
],
"target_text_res": [],
"target_url": "https://academic.microsoft.com/search?q=neural%20networks&f=&orderBy=3",
"target_url_res": [
"search?",
"q=neural%20networks",
"orderBy=3"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "http://citeseerx.ist.psu.edu/index",
"query_words": [
"find",
"articles",
"on",
"neural networks",
"sort by",
"citation count"
],
"query_annotations": [
"",
"",
"",
"topic",
"",
"key"
],
"demonstration": [
"input_text #neural networks# @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"search_docs\")/form[1]/div[1]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/form[1]/div[1]/input[1]",
"select #1# @ id(\"sortvalue\") || /html[1]/body[1]/div[1]/div[3]/div[2]/div[1]/div[1]/select[1]"
],
"target_text_res": [],
"target_url_res": [
"search?q=neural+networks",
"sort=cite"
],
"target_url": "http://citeseerx.ist.psu.edu/search?q=neural+networks&t=doc&sort=cite",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "https://dl.acm.org/",
"query_words": [
"find",
"articles",
"on",
"neural networks",
"sort by",
"citation count"
],
"query_annotations": [
"",
"",
"",
"topic",
"",
"key"
],
"demonstration": [
"input_text #neural networks# @ id(\"header\")/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1]",
"press_enter ## @ id(\"header\")/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/table[1]/tbody[1]/tr[2]/td[3]/table[1]/tbody[1]/tr[1]/td[1]/form[1]/span[1]/label[1]/input[1]",
"select #2# @ id(\"sortmenu\")/select[1] || /html[1]/body[1]/div[3]/div[4]/div[3]/div[1]/select[1]"
],
"target_text_res": [],
"target_url_res": [
"query=neural%20networks",
"srt=citedCount"
],
"target_url": "https://dl.acm.org/results.cfm?query=neural%20networks&filtered=&within=owners%2Eowner%3DHOSTED&dte=&bfr=&srt=citedCount",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,27 @@
{
"start_url": "https://en.oxforddictionaries.com/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"click ## @ id(\"sbToggle_24261407\") || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/div[1]/a[1]",
"click ## @ id(\"sbOptions_10222826\")/li[2]/a[1] || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/div[1]/ul[1]/li[2]/a[1]",
"input_text #intelligent# @ id(\"header\")/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2] || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2]",
"press_enter ## @ id(\"header\")/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2] || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2]"
],
"target_text_res": [],
"target_url_res": [
"synonym/intelligent"
],
"target_url": "https://www.lexico.com/en/synonym/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,27 @@
{
"start_url": "https://rhymezone.com/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"select #3# @ id(\"form1\")/select[1] || /html[1]/body[1]/center[1]/table[1]/tbody[1]/tr[1]/td[3]/table[2]/tbody[1]/tr[1]/td[1]/div[1]/form[1]/select[1]",
"input_text #intelligent# @ id(\"rzinput\") || /html[1]/body[1]/center[1]/table[1]/tbody[1]/tr[1]/td[3]/table[2]/tbody[1]/tr[1]/td[1]/div[1]/form[1]/input[1]",
"press_enter ## @ id(\"rzinput\") || /html[1]/body[1]/center[1]/table[1]/tbody[1]/tr[1]/td[3]/table[2]/tbody[1]/tr[1]/td[1]/div[1]/form[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"Word=intelligent",
"typeofrhyme=syn"
],
"target_url": "https://rhymezone.com/r/rhyme.cgi?Word=intelligent&typeofrhyme=syn&org1=syl&org2=l&org3=y",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,27 @@
{
"start_url": "https://www.definitions.net/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"click ## @ id(\"network-header\") || /html[1]/body[1]/div[2]/header[1]/div[1]/div[2]",
"click ## @ id(\"network-header-links\")/li[17]/a[1] || /html[1]/body[1]/div[2]/header[1]/div[1]/div[2]/ul[1]/li[17]/a[1]",
"input_text #intelligent# @ id(\"search\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/input[1]",
"press_enter ## @ id(\"search\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"synonym/intelligent"
],
"target_url": "https://www.synonyms.com/synonym/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,25 @@
{
"start_url": "https://www.macmillandictionary.com/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"search_input\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[2]/input[1]",
"press_enter ## @ id(\"search_input\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[2]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"macmillanthesaurus",
"intelligent"
],
"target_url": "https://www.macmillanthesaurus.com/intelligent#intelligent__3"
}

Просмотреть файл

@ -0,0 +1,25 @@
{
"start_url": "https://www.merriam-webster.com/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"s-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[1]/div[4]/form[1]/div[1]/input[1]",
"click ## @ id(\"mw-search-tabs\")/span[2] || /html[1]/body[1]/div[1]/div[1]/header[1]/div[1]/div[4]/form[1]/div[2]/span[2]",
"press_enter ## @ id(\"s-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[1]/div[4]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"thesaurus/intelligent"
],
"target_url": "https://www.merriam-webster.com/thesaurus/intelligent"
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "http://www.yourdictionary.com/",
"query_words": [
"find",
"synonyms",
"of",
"intelligent"
],
"query_annotations": [
"",
"type",
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"app\")/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1]",
"press_enter #intelligent# @ id(\"app\")/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1]",
"click ## @ id(\"floater-synonyms\")/button[1] || /html[1]/body[1]/div[6]/div[1]/div[2]/div[1]/a[2]/button[1]"
],
"target_text_res": [
"synonym",
"bright"
],
"target_url_res": [
"thesaurus",
"intelligent"
],
"target_url": "https://thesaurus.yourdictionary.com/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "http://dictionary.cambridge.org/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"cdo-search-input\") || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"cdo-search-input\") || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://dictionary.cambridge.org/dictionary/english/intelligent",
"target_url_res": [
"english/intelligent"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "https://en.oxforddictionaries.com/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"header\")/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2] || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2]",
"press_enter ## @ id(\"header\")/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2] || /html[1]/body[1]/div[1]/header[1]/div[2]/div[1]/div[1]/div[1]/div[2]/form[1]/fieldset[1]/input[2]"
],
"target_text_res": [],
"target_url": "https://www.lexico.com/en/definition/intelligent",
"target_url_res": [
"definition/intelligent"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,22 @@
{
"start_url": "https://rhymezone.com/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"rzinput\") || /html[1]/body[1]/center[1]/table[1]/tbody[1]/tr[1]/td[3]/table[2]/tbody[1]/tr[1]/td[1]/div[1]/form[1]/input[1]",
"press_enter ## @ id(\"rzinput\") || /html[1]/body[1]/center[1]/table[1]/tbody[1]/tr[1]/td[3]/table[2]/tbody[1]/tr[1]/td[1]/div[1]/form[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://rhymezone.com/r/rhyme.cgi?Word=intelligent&typeofrhyme=perfect&org1=syl&org2=l&org3=y",
"target_url_res": [
"Word=intelligent",
"typeofrhyme=perfect"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "https://www.definitions.net/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"content-top\")/div[1]/form[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/input[1]",
"press_enter ## @ id(\"content-top\")/div[1]/form[1]/div[1]/div[1]/input[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"definition/intelligent"
],
"target_url": "https://www.definitions.net/definition/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "https://www.macmillandictionary.com/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"search_input\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[2]/input[1]",
"press_enter ## @ id(\"search_input\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[2]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"dictionary/british/intelligent"
],
"target_url": "https://www.macmillandictionary.com/dictionary/british/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "https://www.merriam-webster.com/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"s-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[1]/div[4]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"s-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[1]/div[4]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"dictionary/intelligent"
],
"target_url": "https://www.merriam-webster.com/dictionary/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "https://www.vocabulary.com/dictionary/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"search\") || /html[1]/body[1]/div[2]/header[1]/div[1]/nav[2]/ul[1]/li[2]/div[1]/input[1]",
"press_enter ## @ id(\"search\") || /html[1]/body[1]/div[2]/header[1]/div[1]/nav[2]/ul[1]/li[2]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"dictionary/intelligent"
],
"target_url": "https://www.vocabulary.com/dictionary/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,21 @@
{
"start_url": "http://www.yourdictionary.com/",
"query_words": [
"search",
"intelligent"
],
"query_annotations": [
"",
"term"
],
"demonstration": [
"input_text #intelligent# @ id(\"app\")/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1]",
"press_enter ## @ id(\"app\")/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"com/intelligent"
],
"target_url": "https://www.yourdictionary.com/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "http://dictionary.cambridge.org/",
"query_words": [
"translate",
"intelligent",
"from",
"English",
"to",
"Spanish"
],
"query_annotations": [
"",
"term",
"",
"language",
"",
"language"
],
"demonstration": [
"click ## @ id(\"cdo-search-form\")/div[1]/span[1]/button[2] || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/span[1]/button[2]",
"click ## @ id(\"megaMenuTranslation\")/ul[1]/li[1]/span[2]/a[1] || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/ul[1]/li[1]/span[2]/a[1]",
"input_text #intelligent# @ id(\"cdo-search-input\") || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/input[1]",
"press_enter ## @ id(\"cdo-search-input\") || /html[1]/body[1]/div[6]/div[1]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"dictionary/english-spanish/intelligent"
],
"target_url": "https://dictionary.cambridge.org/dictionary/english-spanish/intelligent",
"replayable": true
}

Просмотреть файл

@ -0,0 +1,33 @@
{
"start_url": "https://www.bing.com/translator/",
"query_words": [
"translate",
"intelligent",
"from",
"English",
"to",
"Spanish"
],
"query_annotations": [
"",
"term",
"",
"language",
"",
"language"
],
"demonstration": [
"select #14# @ id(\"tta_srcsl\") || /html[1]/body[1]/div[5]/div[1]/table[1]/tbody[1]/tr[1]/td[1]/div[1]/div[1]/select[1]",
"select #50# @ id(\"tta_tgtsl\") || /html[1]/body[1]/div[5]/div[1]/table[1]/tbody[1]/tr[1]/td[3]/div[1]/div[1]/select[1]",
"input_text #intelligent# @ id(\"tta_input\") || /html[1]/body[1]/div[5]/div[1]/table[1]/tbody[1]/tr[1]/td[1]/div[1]/div[3]/div[1]/textarea[1]",
"press_enter ## @ id(\"tta_input\") || /html[1]/body[1]/div[5]/div[1]/table[1]/tbody[1]/tr[1]/td[1]/div[1]/div[3]/div[1]/textarea[1]"
],
"target_text_res": [
"inteligente",
"Spanish"
],
"target_url_res": [],
"target_url": "https://www.bing.com/translator/",
"necessary_actions": [],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,34 @@
{
"start_url": "https://www.translate.com/",
"query_words": [
"translate",
"intelligent",
"from",
"English",
"to",
"Spanish"
],
"query_annotations": [
"",
"term",
"",
"language",
"",
"language"
],
"demonstration": [
"click ## @ id(\"translation_language_dropdown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/button[4]",
"click ## @ id(\"translation_es\") || /html[1]/body[1]/section[2]/div[7]/a[5]",
"input_text #intelligent# @ id(\"source_text\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/textarea[1]",
"press_enter ## @ id(\"source_text\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/textarea[1]"
],
"target_text_res": [
"inteligente",
"Spanish"
],
"target_url_res": [],
"target_url": "https://www.translate.com/",
"necessary_actions": [
"input_text #intelligent# @ id(\"source_text\")"
]
}

Просмотреть файл

@ -0,0 +1,34 @@
{
"start_url": "http://www.yourdictionary.com/",
"query_words": [
"translate",
"intelligent",
"from",
"English",
"to",
"Spanish"
],
"query_annotations": [
"",
"term",
"",
"language",
"",
"language"
],
"demonstration": [
"click ## @ id(\"header\")/nav[1]/li[7]/a[1] || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/header[1]/nav[1]/li[7]/a[1]",
"input_text #intelligent# @ id(\"yd_search_bar\") || /html[1]/body[1]/div[6]/div[1]/div[2]/div[2]/div[1]/form[1]/div[1]/input[1]",
"press_enter #intelligent# @ id(\"yd_search_bar\") || /html[1]/body[1]/div[6]/div[1]/div[2]/div[2]/div[1]/form[1]/div[1]/input[1]"
],
"target_text_res": [
"inteligente",
"Spanish"
],
"target_url": "https://spanish.yourdictionary.com/intelligent",
"target_url_res": [
"spanish",
"intelligent"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,56 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"for",
"2",
"adults",
"in",
"business",
"class"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
"",
"",
"seat type",
""
],
"demonstration": [
"click ## @ id(\"ui-id-4\") || /html[1]/body[1]/main[1]/div[1]/form[1]/section[2]/div[1]/div[1]/div[1]/ul[1]/li[2]/a[1]",
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"select #1# @ id(\"revenueCabin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[4]/div[2]/div[2]/label[2]/select[1]",
"click ## @ id(\"flightSearchSubmitBtn\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[5]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"click ## @ id(\"ui-id-4\") || /html[1]/body[1]/main[1]/div[1]/form[1]/section[2]/div[1]/div[1]/div[1]/ul[1]/li[2]/a[1]",
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"select #1# @ id(\"revenueCabin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[4]/div[2]/div[2]/label[2]/select[1]"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,47 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"click ## @ id(\"ui-id-4\") || /html[1]/body[1]/main[1]/div[1]/form[1]/section[2]/div[1]/div[1]/div[1]/ul[1]/li[2]/a[1]",
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"click ## @ id(\"flightSearchSubmitBtn\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[5]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,55 @@
{
"start_url": "https://www.cheapflights.com/",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"click ## @ id(\"ElFs-RTOWsearchform\")/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2] || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2]",
"input_text #08/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"press_enter ## @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"click ## @ id(\"NCaY-travelers\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/a[1]",
"click ## @ id(\"c2L2U\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/div[1]/div[1]/div[3]/div[2]/div[2]/div[1]/div[1]/div[3]/button[1]",
"click ## @ id(\"NCaY-travelers\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/a[1]",
"click ## @ id(\"NCaY-submit\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[3]/div[1]/button[1]"
],
"target_text_res": [
"2 travelers",
"7/27"
],
"necessary_actions": [
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"input_text #08/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]"
],
"target_url": "https://www.cheapflights.com/book-flights-online/",
"target_url_res": [
"book-flights-online"
]
}

Просмотреть файл

@ -0,0 +1,50 @@
{
"start_url": "https://www.expedia.com/Flights",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"click ## @ id(\"flight-type-one-way-label-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[1]/div[1]/div[2]/label[1]",
"click ## @ id(\"flight-type-one-way-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[1]/div[1]/div[2]/label[1]/input[1]",
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"flight-departing-single-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[1]/div[1]/label[1]/input[1]",
"click ## @ id(\"traveler-selector-flp\")/div[1]/ul[1]/li[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[4]/div[1]/div[1]/ul[1]/li[1]/button[1]",
"click ## @ id(\"traveler-selector-flp\")/div[1]/ul[1]/li[1]/div[1]/div[1]/div[1]/div[1]/div[4]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[4]/div[1]/div[1]/ul[1]/li[1]/div[1]/div[1]/div[1]/div[1]/div[4]/button[1]",
"click ## @ id(\"gcw-flights-form-flp\")/div[8]/label[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[8]/label[1]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.expedia.com/Flights-Search?flight-type=on&starDate=07%2F27%2F2019&mode=search&trip=oneway&leg1=from%3ABOS%2Cto%3ASFO%2Cdeparture%3A07%2F27%2F2019TANYT&passengers=children%3A0%2Cadults%3A2%2Cseniors%3A0%2Cinfantinlap%3AY",
"target_url_res": [
"Flights-Search?",
"trip=oneway",
"starDate=07%2F27%2F2019",
"from%3ABOS%2Cto%3ASFO",
"adults%3A2"
]
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date"
],
"demonstration": [
"click ## @ id(\"ui-id-4\") || /html[1]/body[1]/main[1]/div[1]/form[1]/section[2]/div[1]/div[1]/div[1]/ul[1]/li[2]/a[1]",
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"click ## @ id(\"flightSearchSubmitBtn\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[5]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"click ## @ id(\"ui-id-4\")",
"input_text #BOS# @ id(\"segments0.origin\")",
"input_text #SFO# @ id(\"segments0.destination\")",
"input_text #08/27/2019# @ id(\"segments0.travelDate\")"
]
}

Просмотреть файл

@ -0,0 +1,44 @@
{
"start_url": "https://www.cheapflights.com/",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date"
],
"demonstration": [
"click ## @ id(\"ElFs-RTOWsearchform\")/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2] || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2]",
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"input_text #08/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"press_enter ## @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"click ## @ id(\"NCaY-submit\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[3]/div[1]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.cheapflights.com/book-flights-online/",
"target_url_res": [
"book-flights-online"
],
"necessary_actions": [
"input_text #BOS# @ id(\"NCaY-origin\")",
"input_text #SFO# @ id(\"NCaY-destination\")",
"input_text #08/27/2019# @ id(\"NCaY-depart-input\")",
"click ## @ id(\"NCaY-submit\")"
]
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://www.expedia.com/Flights",
"query_words": [
"find",
"one-way",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019"
],
"query_annotations": [
"",
"flight type",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date"
],
"demonstration": [
"click ## @ id(\"flight-type-one-way-label-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[1]/div[1]/div[2]/label[1]",
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"flight-departing-single-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[1]/div[1]/label[1]/input[1]",
"click ## @ id(\"gcw-flights-form-flp\")/div[8]/label[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[8]/label[1]/button[1]"
],
"target_text_res": [],
"target_url_res": [
"Flights-Search?",
"trip=oneway",
"starDate=07%2F27%2F2019",
"from%3ABOS%2Cto%3ASFO"
]
}

Просмотреть файл

@ -0,0 +1,52 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"07/27/2019",
"for",
"2",
"adults",
"in",
"business",
"class"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
"",
"",
"seat type",
""
],
"demonstration": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #07/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"select #1# @ id(\"revenueCabin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[4]/div[2]/div[2]/label[2]/select[1]",
"click ## @ id(\"flightSearchSubmitBtn\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[5]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #07/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"select #1# @ id(\"revenueCabin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[4]/div[2]/div[2]/label[2]/select[1]"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,44 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"07/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #07/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]",
"click ## @ id(\"flightSearchSubmitBtn\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[5]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #07/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"select #1# @ id(\"passengerCount\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[3]/div[1]/div[1]/label[1]/select[1]"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,53 @@
{
"start_url": "https://www.cheapflights.com/",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"07/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"click ## @ id(\"ElFs-RTOWsearchform\")/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2] || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[5]/div[1]/span[1]/span[1]/label[2]",
"input_text #07/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"press_enter ## @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"click ## @ id(\"NCaY-travelers\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/a[1]",
"click ## @ id(\"c2L2U\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/div[1]/div[1]/div[3]/div[2]/div[2]/div[1]/div[1]/div[3]/button[1]",
"click ## @ id(\"NCaY-travelers\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[8]/div[1]/a[1]",
"click ## @ id(\"NCaY-submit\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[3]/div[1]/button[1]"
],
"target_text_res": [
"2 travelers",
"7/27"
],
"necessary_actions": [
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"input_text #07/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]"
],
"target_url": "https://www.cheapflights.com/book-flights-online/",
"target_url_res": [
"book-flights-online"
]
}

Просмотреть файл

@ -0,0 +1,45 @@
{
"start_url": "https://www.expedia.com/Flights",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"07/27/2019",
"for",
"2",
"adults"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"number",
""
],
"demonstration": [
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]",
"input_text #07/27/2019# @ id(\"flight-departing-single-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[1]/div[1]/label[1]/input[1]",
"click ## @ id(\"traveler-selector-flp\")/div[1]/ul[1]/li[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[4]/div[1]/div[1]/ul[1]/li[1]/button[1]",
"click ## @ id(\"traveler-selector-flp\")/div[1]/ul[1]/li[1]/div[1]/div[1]/div[1]/div[1]/div[4]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[4]/div[1]/div[1]/ul[1]/li[1]/div[1]/div[1]/div[1]/div[1]/div[4]/button[1]",
"click ## @ id(\"gcw-flights-form-flp\")/div[8]/label[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[8]/label[1]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.expedia.com/Flights-Search?flight-type=on&starDate=07%2F27%2F2019&mode=search&trip=oneway&leg1=from%3ABOS%2Cto%3ASFO%2Cdeparture%3A07%2F27%2F2019TANYT&passengers=children%3A0%2Cadults%3A2%2Cseniors%3A0%2Cinfantinlap%3AY",
"target_url_res": [
"Flights-Search?",
"starDate=07%2F27%2F2019",
"from%3ABOS%2Cto%3ASFO",
"adults%3A2"
]
}

Просмотреть файл

@ -0,0 +1,44 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"round trip",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"returning",
"09/01/2019"
],
"query_annotations": [
"",
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"date"
],
"demonstration": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"segments0.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[1]/label[1]/input[1]",
"input_text #09/01/2019# @ id(\"segments1.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[3]/label[1]/input[1]",
"press_enter ## @ id(\"segments1.travelDate\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[5]/div[3]/label[1]/input[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"segments0.origin\")",
"input_text #SFO# @ id(\"segments0.destination\")",
"input_text #08/27/2019# @ id(\"segments0.travelDate\")",
"input_text #09/01/2019# @ id(\"segments1.travelDate\")"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,49 @@
{
"start_url": "https://www.cheapflights.com/",
"query_words": [
"find",
"round trip",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"returning",
"09/01/2019"
],
"query_annotations": [
"",
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"date"
],
"demonstration": [
"input_text #BOS# @ id(\"NCaY-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"NCaY-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"input_text #08/27/2019# @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"press_enter ## @ id(\"NCaY-depart-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"input_text #09/01/2019# @ id(\"NCaY-return-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]",
"press_enter ## @ id(\"NCaY-return-input\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]",
"click ## @ id(\"NCaY-submit\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[3]/div[1]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.cheapflights.com/book-flights-online/",
"target_url_res": [
"book-flights-online"
],
"necessary_actions": [
"input_text #BOS# @ /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"input_text #08/27/2019# @ /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[1]/div[1]",
"input_text #09/01/2019# @ /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]"
]
}

Просмотреть файл

@ -0,0 +1,45 @@
{
"start_url": "https://www.expedia.com/Flights",
"query_words": [
"find",
"round trip",
"flight",
"from",
"BOS",
"to",
"SFO",
"departing",
"08/27/2019",
"returning",
"09/01/2019"
],
"query_annotations": [
"",
"",
"",
"",
"departure airport",
"",
"arrival airport",
"",
"date",
"",
"date"
],
"demonstration": [
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]",
"input_text #08/27/2019# @ id(\"flight-departing-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[2]/div[1]/label[1]/input[1]",
"input_text #09/01/2019# @ id(\"flight-returning-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/fieldset[2]/div[1]/div[3]/div[1]/label[1]/input[1]",
"click ## @ id(\"gcw-flights-form-flp\")/div[7]/label[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[7]/label[1]/button[1]"
],
"target_text_res": [],
"target_url_res": [
"Flights-Search?",
"trip=roundtrip",
"starDate=07%2F27%2F2019",
"endDate=08%2F01%2F2019",
"from%3ABOS%2Cto%3ASFO"
],
"target_url": "https://www.expedia.com/Flights-Search?flight-type=on&starDate=07%2F27%2F2019&endDate=08%2F01%2F2019&mode=search&trip=roundtrip&leg1=from%3ABOS%2Cto%3ASFO%2Cdeparture%3A07%2F27%2F2019TANYT&leg2=from%3ASFO%2Cto%3ABOS%2Cdeparture%3A08%2F01%2F2019TANYT&passengers=children%3A0%2Cadults%3A1%2Cseniors%3A0%2Cinfantinlap%3AY&fareCalendarPrice="
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://www.aa.com/booking/find-flights",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport"
],
"demonstration": [
"input_text #BOS# @ id(\"segments0.origin\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]",
"press_enter ## @ id(\"segments0.destination\") || /html[1]/body[1]/section[1]/div[1]/form[1]/section[2]/div[4]/div[2]/div[1]/label[1]/input[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"segments0.origin\")",
"input_text #SFO# @ id(\"segments0.destination\")"
]
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://www.cheapflights.com/",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport"
],
"demonstration": [
"input_text #BOS# @ id(\"eW0k-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"eW0k-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]",
"click ## @ id(\"eW0k-submit\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[3]/div[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"eW0k-origin\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"input_text #SFO# @ id(\"eW0k-destination\") || /html[1]/body[1]/div[1]/div[1]/div[6]/div[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[3]/div[1]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://www.expedia.com/Flights",
"query_words": [
"find",
"flight",
"from",
"BOS",
"to",
"SFO"
],
"query_annotations": [
"",
"",
"",
"departure airport",
"",
"arrival airport"
],
"demonstration": [
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]",
"click ## @ id(\"gcw-flights-form-flp\")/div[7]/label[1]/button[1] || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[7]/label[1]/button[1]"
],
"target_text_res": [],
"necessary_actions": [
"input_text #BOS# @ id(\"flight-origin-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/label[1]/input[1]",
"input_text #SFO# @ id(\"flight-destination-flp\") || /html[1]/body[1]/meso-native-marquee[1]/section[1]/div[1]/div[1]/div[1]/section[1]/div[1]/div[2]/div[2]/section[1]/form[1]/div[3]/div[2]/div[1]/div[1]/label[1]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,28 @@
{
"start_url": "https://demo.openmrs.org",
"query_words": [
"find",
"patient",
"record",
"of",
"Lisa Smith"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"target_text_res": [],
"target_url_res": [
"patient.page?",
"patientId=0101a93e"
],
"necessary_actions": [],
"demonstration": [
"click ## @ id(\"coreapps-activeVisitsHomepageLink-coreapps-activeVisitsHomepageLink-extension\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/a[1]",
"input_text #Lisa Smith# @ id(\"patient-search\") || /html[1]/body[1]/div[1]/div[3]/form[1]/input[1]",
"press_enter ## @ id(\"patient-search\") || /html[1]/body[1]/div[1]/div[3]/form[1]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://demo.openmrs.org/openmrs/appointmentschedulingui/dailyScheduledAppointments.page",
"query_words": [
"lookup",
"cancelled",
"dermatology",
"appointments",
"at",
"Laboratory"
],
"query_annotations": [
"",
"status",
"service type",
"",
"",
"location"
],
"target_text_res": [],
"target_url_res": [],
"target_url": "https://demo.openmrs.org/openmrs/appointmentschedulingui/dailyScheduledAppointments.page",
"necessary_actions": null,
"demonstration": [
"select #3# @ id(\"filter-location\")/select[1] || /html[1]/body[1]/div[1]/div[3]/div[2]/div[2]/select[1]",
"select #3# @ id(\"filter-appointmentStatusType\")/select[1] || /html[1]/body[1]/div[1]/div[3]/div[2]/div[3]/div[2]/select[1]",
"input_text #dermatology# @ id(\"viewAppointmentBlock\") || /html[1]/body[1]/div[1]/div[3]/div[2]/div[3]/selectmultipleappointmenttypes[1]/div[1]/div[1]/div[1]/div[1]/input[1]",
"press_enter ## @ id(\"viewAppointmentBlock\") || /html[1]/body[1]/div[1]/div[3]/div[2]/div[3]/selectmultipleappointmenttypes[1]/div[1]/div[1]/div[1]/div[1]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://demo.openmrs.org",
"query_words": [
"register",
"a",
"patient",
"named",
"Yuan",
"Chun",
"Lee"
],
"query_annotations": [
"",
"",
"",
"",
"given name",
"middle name",
"family name"
],
"target_text_res": [],
"target_url_res": [],
"target_url": "https://demo.openmrs.org/openmrs/registrationapp/registerPatient.page?appId=referenceapplication.registrationapp.registerPatient",
"necessary_actions": null,
"demonstration": [
"click ## @ id(\"referenceapplication-registrationapp-registerPatient-homepageLink-referenceapplication-registrationapp-registerPatient-homepageLink-extension\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/a[3]",
"input_text #Yuan# @ id(\"fr2698-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[1]/input[1]",
"input_text #Chun# @ id(\"fr9639-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[2]/input[1]",
"input_text #Lee# @ id(\"fr5362-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]",
"press_enter ## @ id(\"fr5362-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://demo.openmrs.org",
"query_words": [
"register",
"a",
"patient",
"named",
"YuanC.",
"Lee"
],
"query_annotations": [
"",
"",
"",
"",
"given name",
"family name"
],
"target_text_res": [],
"target_url_res": [],
"target_url": "https://demo.openmrs.org/openmrs/registrationapp/registerPatient.page?appId=referenceapplication.registrationapp.registerPatient",
"necessary_actions": null,
"demonstration": [
"click ## @ id(\"referenceapplication-registrationapp-registerPatient-homepageLink-referenceapplication-registrationapp-registerPatient-homepageLink-extension\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/a[3]",
"input_text #YuanC.# @ id(\"fr4845-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[1]/input[1]",
"input_text #Lee# @ id(\"fr356-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]",
"press_enter ## @ id(\"fr356-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]"
]
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://demo.openmrs.org",
"query_words": [
"register",
"a",
"male",
"patient",
"named",
"YuanC.",
"Lee"
],
"query_annotations": [
"",
"",
"gender",
"",
"",
"given name",
"family name"
],
"target_text_res": [],
"target_url_res": [],
"target_url": "https://demo.openmrs.org/openmrs/registrationapp/registerPatient.page?appId=referenceapplication.registrationapp.registerPatient",
"necessary_actions": null,
"demonstration": [
"click ## @ id(\"referenceapplication-registrationapp-registerPatient-homepageLink-referenceapplication-registrationapp-registerPatient-homepageLink-extension\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/a[3]",
"input_text #YuanC.# @ id(\"fr5239-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[1]/input[1]",
"input_text #Lee# @ id(\"fr5269-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]",
"press_enter ## @ id(\"fr5269-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[1]/div[1]/p[3]/input[1]",
"select #0# @ id(\"gender-field\") || /html[1]/body[1]/div[1]/div[3]/div[2]/form[1]/section[1]/fieldset[2]/p[1]/select[1]"
]
}

Просмотреть файл

@ -0,0 +1,28 @@
{
"start_url": "https://aadl.org/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"select #1# @ id(\"search-by\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[1]/div[1]/select[1]",
"input_text #Umberto Eco# @ id(\"search-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/input[1]",
"press_enter ## @ id(\"search-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/input[1]"
],
"target_text_res": [],
"target_url": "https://aadl.org/search/catalog/Umberto%20Eco?author=Umberto%20Eco",
"target_url_res": [
"author=Umberto%20Eco"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://catalog.swanlibraries.net/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"press_enter ## @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]"
],
"target_text_res": [],
"target_url": "https://catalog.swanlibraries.net/client/en_US/default/search/results?qu=Umberto+Eco&te=ILS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor",
"target_url_res": [
"qu=Umberto+Eco",
"Author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "https://aadl.org/",
"query_words": [
"find",
"audiobooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"select #1# @ id(\"search-by\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[1]/div[1]/select[1]",
"select #4# @ id(\"search-format\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[2]/div[1]/select[1]",
"input_text #Umberto Eco# @ id(\"search-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/input[1]",
"click ## @ id(\"search-submit\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/button[1]"
],
"target_text_res": [],
"target_url": "https://aadl.org/search/catalog/Umberto%20Eco?mat_code=a,x,l,c,zb,oe&author=Umberto%20Eco",
"target_url_res": [
"author=Umberto%20Eco",
"mat_code=i,oa"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://catalog.swanlibraries.net/",
"query_words": [
"find",
"audiobooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"click ## @ id(\"searchButton\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[4]/input[1]",
"click ## @ id(\"facetFORMAT\")/div[2]/div[1]/input[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[4]/form[1]/div[2]/div[2]/div[1]/input[1]",
"click ## @ id(\"facetFormFORMAT\")/div[1]/div[2]/button[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[4]/form[1]/div[1]/div[2]/button[1]"
],
"target_text_res": [],
"target_url": "https://catalog.swanlibraries.net/client/en_US/default/search/results?qu=Umberto+Eco&qf=FORMAT%09Format%09AUDIOBOOK+CD%09Audiobook+CD&te=ILS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor",
"target_url_res": [
"qu=Umberto+Eco",
"Format%09AUDIOBOOK+CD",
"Author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://kzpl.ent.sirsi.net/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"click ## @ id(\"searchButton\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[4]/input[1]",
"click ## @ id(\"facetERC_FORMAT\")/div[1]/div[1]/input[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[8]/form[1]/div[2]/div[1]/div[1]/input[1]",
"click ## @ id(\"facetFormERC_FORMAT\")/div[1]/div[2]/button[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[8]/form[1]/div[1]/div[2]/button[1]"
],
"target_url": "https://kzpl.ent.sirsi.net/client/en_US/KPL/search/results?qu=Umberto+Eco&qf=ERC_FORMAT%09Electronic+Format%09HOOPLA+E+BOOK%09HOOPLA+E+BOOK&lm=ALLLIBS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor",
"target_text_res": [],
"target_url_res": [
"qu=Umberto+Eco",
"E+BOOK",
"Author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://seattle.bibliocommons.com/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1]",
"input_text #Umberto Eco# @ id(\"search_box_id_7f1kjfen2cv7j3d1834jr8d1kh\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"press_enter ## @ id(\"search_box_id_7f1kjfen2cv7j3d1834jr8d1kh\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"click ## @ id(\"content\")/div[2]/div[1]/div[1]/div[2]/div[1]/section[1]/div[1]/ul[1]/li[3]/div[1]/ul[1]/li[1]/section[1]/ul[1]/li[2] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[1]/section[1]/div[1]/ul[1]/li[3]/div[1]/ul[1]/li[1]/section[1]/ul[1]/li[2]"
],
"target_text_res": [],
"target_url": "https://seattle.bibliocommons.com/v2/search?f_FORMAT=EBOOK&query=Umberto+Eco&searchType=author",
"target_url_res": [
"f_FORMAT=EBOOK",
"query=Umberto+Eco",
"searchType=author"
],
"note": "the last action doesn't work"
}

Просмотреть файл

@ -0,0 +1,38 @@
{
"start_url": "https://aadl.org/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"select #1# @ id(\"search-by\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[1]/div[1]/select[1]",
"select #1# @ id(\"search-format\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[2]/div[1]/select[1]",
"input_text #Umberto Eco# @ id(\"search-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/input[1]",
"press_enter ## @ id(\"search-term\") || /html[1]/body[1]/div[1]/div[1]/header[1]/div[2]/form[1]/div[3]/input[1]",
"select #4# @ id(\"search-sort-by\") || /html[1]/body[1]/div[1]/div[1]/main[1]/div[2]/div[1]/div[2]/span[2]/select[1]"
],
"target_text_res": [],
"target_url": "https://aadl.org/search/catalog/Umberto%20Eco?mat_code=a,x,l,c,zb,oe&author=Umberto%20Eco&sort=pub_year~asc",
"target_url_res": [
"author=Umberto%20Eco",
"mat_code=a,x,l,c,zb,oe",
"sort=pub_year"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://catalog.swanlibraries.net/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"press_enter ## @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"click ## @ id(\"facetSWAN_590\")/div[1]/div[1]/input[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[4]/form[1]/div[2]/div[1]/div[1]/input[1]",
"click ## @ id(\"facetFormSWAN_590\")/div[1]/div[2]/button[1] || /html[1]/body[1]/div[4]/div[2]/div[1]/div[1]/div[1]/div[4]/form[1]/div[1]/div[2]/button[1]",
"select #2# @ id(\"sortSelect\") || /html[1]/body[1]/div[4]/div[2]/div[1]/div[2]/div[1]/div[1]/div[1]/div[3]/form[1]/select[1]"
],
"target_text_res": [],
"target_url": "https://catalog.swanlibraries.net/client/en_US/default/search/results?qu=Umberto+Eco&qf=FORMAT%09Format%09BOOK%09Book&te=ILS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor&st=PA",
"target_url_res": [
"qu=Umberto+Eco",
"Author",
"st=PA"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,37 @@
{
"start_url": "https://kzpl.ent.sirsi.net/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"press_enter ## @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"select #2# @ id(\"sortSelect\") || /html[1]/body[1]/div[4]/div[2]/div[1]/div[2]/div[1]/div[1]/div[1]/div[3]/form[1]/select[1]"
],
"target_text_res": [],
"target_url": "https://kzpl.ent.sirsi.net/client/en_US/KPL/search/results?qu=Umberto+Eco&lm=ALLLIBS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor&st=PA",
"target_url_res": [
"qu=Umberto+Eco",
"AUTHOR",
"st=PA"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://seattle.bibliocommons.com/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1]",
"input_text #Umberto Eco# @ id(\"search_box_id_7f1kjfen2cv7j3d1834jr8d1kh\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"press_enter ## @ id(\"search_box_id_7f1kjfen2cv7j3d1834jr8d1kh\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"click ## @ id(\"content\")/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/div[1]/button[1] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/div[1]/button[1]",
"click ## @ id(\"dropdownMenu_5\")/li[5]/a[1] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/span[1]/ul[1]/li[5]/a[1]"
],
"target_text_res": [],
"target_url": "https://seattle.bibliocommons.com/v2/search?query=Umberto+Eco&searchType=author&sort=published_date",
"target_url_res": [
"sort=published_date",
"query=Umberto+Eco",
"searchType=author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://ccs.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"input_text #Umberto Eco# @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]",
"press_enter ## @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]",
"select #5# @ id(\"dropdownSortByTop\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[2]/div[1]/div[2]/div[1]/div[1]/select[1]"
],
"target_text_res": [],
"target_url": "https://ccs.polarislibrary.com/polaris/search/searchresults.aspx?ctx=19.1033.0.0.2&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=AB=19%20OR%20AB=20%20OR%20AB=21%20OR%20AB=61%20OR%20(OWN=3)&query=&page=0&searchid=5",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
],
"necessary_actions": [
"select #5# @ id(\"dropdownSortByTop\")"
]
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://jocolibrary.bibliocommons.com/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1]",
"input_text #Umberto Eco# @ id(\"search_box_id_4scnrvojea4egap2g6q64vo1g3\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"press_enter ## @ id(\"search_box_id_4scnrvojea4egap2g6q64vo1g3\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"click ## @ id(\"content\")/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/div[1]/button[1]/span[1]/span[1] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/div[1]/button[1]/span[1]/span[1]",
"click ## @ id(\"dropdownMenu_5\")/li[5]/a[1] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[2]/section[1]/section[1]/span[2]/div[1]/span[1]/ul[1]/li[5]/a[1]"
],
"target_text_res": [],
"target_url": "https://jocolibrary.bibliocommons.com/v2/search?f_FORMAT=BK&query=Umberto+Eco&searchType=author&sort=published_date",
"target_url_res": [
"query=Umberto+Eco",
"searchType=author",
"sort=published_date"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,43 @@
{
"start_url": "http://osceola.librarycatalog.info/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"Term\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/div[1]/input[2]",
"press_enter ## @ id(\"Term\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/div[1]/input[2]",
"select #2# @ id(\"ctrlSearchBars_searchbarKeyword_dropdownSearchBy\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[2]/td[2]/select[1]",
"click ## @ id(\"ctrlSearchBars_searchbarKeyword_buttonDoSearch\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/table[1]/tbody[1]/tr[1]/td[2]/input[1]",
"click ## @ id(\"facet_1_0\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[1]/div[1]/div[3]/div[1]/div[2]/table[1]/tbody[1]/tr[1]/td[1]/ul[1]/li[1]/input[1]",
"select #5# @ id(\"dropdownSortByTop\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/div[1]/div[1]/div[2]/select[1]"
],
"target_text_res": [
"Publication date"
],
"target_url": "http://osceola.librarycatalog.info/polaris/search/searchresults.aspx?ctx=1.1033.0.0.2&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=bks&query=&page=0&searchid=3",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
],
"necessary_actions": [
"select #5# @ id(\"dropdownSortByTop\")"
],
"note": "demo can't replay"
}

Просмотреть файл

@ -0,0 +1,40 @@
{
"start_url": "http://scottsdale.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco",
"sort",
"by",
"publication date"
],
"query_annotations": [
"",
"",
"",
"",
"name",
"",
"",
"key"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]",
"click ## @ id(\"1\")/div[1]/form[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"click ## @ id(\"buttonDoSearchLabel\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/label[1]",
"click ## @ id(\"facet_1_2\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/aside[1]/section[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/div[1]/ul[1]/li[3]/div[1]/label[1]/input[1]",
"select #5# @ id(\"dropdownSortByTop\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[2]/div[2]/div[2]/div[1]/div[1]/select[1]"
],
"target_text_res": [
"Publication date"
],
"target_url": "http://scottsdale.polarislibrary.com/polaris/search/searchresults.aspx?ctx=1.1033.0.0.3&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=ebk&query=&page=0&searchid=7",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
]
}

Просмотреть файл

@ -0,0 +1,32 @@
{
"start_url": "https://ccs.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"select #1# @ id(\"dropdownLimitFilter\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[2]/div[2]/select[1]",
"input_text #Umberto Eco# @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]",
"press_enter ## @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://ccs.polarislibrary.com/polaris/search/searchresults.aspx?ctx=3.1033.0.0.7&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=abk&query=&page=0&searchid=1",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU",
"limit=TOM=ab"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "https://jocolibrary.bibliocommons.com/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1]",
"input_text #Umberto Eco# @ id(\"search_box_id_4scnrvojea4egap2g6q64vo1g3\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"press_enter ## @ id(\"search_box_id_4scnrvojea4egap2g6q64vo1g3\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"click ## @ id(\"content\")/div[2]/div[1]/div[1]/div[2]/div[1]/section[1]/div[1]/ul[1]/li[3]/div[1]/ul[1]/li[1]/section[1]/ul[1]/li[2]/div[1]/button[1] || /html[1]/body[1]/main[1]/div[1]/div[1]/div[4]/div[2]/div[1]/div[1]/div[2]/div[1]/section[1]/div[1]/ul[1]/li[3]/div[1]/ul[1]/li[1]/section[1]/ul[1]/li[2]/div[1]/button[1]"
],
"target_text_res": [],
"target_url": "https://jocolibrary.bibliocommons.com/v2/search?f_FORMAT=EBOOK&query=Umberto+Eco&searchType=author",
"target_url_res": [
"f_FORMAT=EBOOK",
"query=Umberto+Eco",
"searchType=author"
]
}

Просмотреть файл

@ -0,0 +1,31 @@
{
"start_url": "http://osceola.librarycatalog.info/polaris/search/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"Term\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/div[1]/input[2]",
"click ## @ id(\"searchsubmit\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/input[1]",
"select #2# @ id(\"ctrlSearchBars_searchbarKeyword_dropdownSearchBy\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[2]/td[2]/select[1]",
"click ## @ id(\"ctrlSearchBars_searchbarKeyword_buttonDoSearch\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/table[1]/tbody[1]/tr[1]/td[2]/input[1]",
"click ## @ id(\"facet_1_0\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[1]/div[1]/div[3]/div[1]/div[2]/table[1]/tbody[1]/tr[1]/td[1]/ul[1]/li[1]/input[1]"
],
"target_text_res": [],
"target_url": "http://osceola.librarycatalog.info/polaris/search/searchresults.aspx?ctx=1.1033.0.0.2&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=ebk&query=&page=0&searchid=8",
"target_url_res": [
"term=Umberto%20Eco",
"limit=TOM=ebk",
"by=AU"
]
}

Просмотреть файл

@ -0,0 +1,33 @@
{
"start_url": "http://scottsdale.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"ebooks",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"format",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]",
"click ## @ id(\"1\")/div[1]/form[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"click ## @ id(\"buttonDoSearchLabel\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/label[1]",
"click ## @ id(\"facet_1_2\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/aside[1]/section[1]/div[1]/div[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[2]/div[2]/div[1]/ul[1]/li[3]/div[1]/label[1]/input[1]"
],
"target_text_res": [],
"target_url_res": [
"term=Umberto%20Eco",
"by=AU",
"limit=TOM=ebk"
],
"target_url": "http://scottsdale.polarislibrary.com/polaris/search/searchresults.aspx?ctx=1.1033.0.0.3&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=ebk&query=&page=0&searchid=7"
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://kzpl.ent.sirsi.net/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[3]/input[1]",
"select #2# @ id(\"restrictionDropDown\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/div[2]/form[1]/select[1]",
"click ## @ id(\"searchButton\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[2]/div[4]/input[1]"
],
"target_text_res": [],
"target_url": "https://kzpl.ent.sirsi.net/client/en_US/KPL/search/results?qu=Umberto+Eco&te=&lm=ALLLIBS&rt=false%7C%7C%7CAUTHOR%7C%7C%7CAuthor",
"target_url_res": [
"qu=Umberto+Eco",
"AUTHOR"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "https://seattle.bibliocommons.com/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"search_box_id_1jeaana4i3viensn1q00bs73bl\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[1]/input[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"desktop_search_form\")/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/div[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/a[1]",
"click ## @ id(\"desktop_search_form\")/div[2]/span[2]/button[1] || /html[1]/body[1]/div[2]/div[1]/div[1]/div[2]/div[1]/div[1]/div[3]/div[1]/div[1]/div[1]/form[1]/div[2]/span[2]/button[1]"
],
"target_text_res": [],
"target_url": "https://seattle.bibliocommons.com/v2/search?query=Umberto+Eco&searchType=author",
"target_url_res": [
"query=Umberto+Eco",
"searchType=author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "https://ccs.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"input_text #Umberto Eco# @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]",
"press_enter ## @ id(\"textboxTerm\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/asp:table[1]/asp:tablerow[1]/asp:tablecell[1]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/input[1]"
],
"target_text_res": [],
"target_url": "https://ccs.polarislibrary.com/polaris/search/searchresults.aspx?ctx=3.1033.0.0.7&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=*&query=&page=0&searchid=1",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "https://www.jocolibrary.org/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"globalQuery\") || /html[1]/body[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/input[1]",
"select #2# @ id(\"t\") || /html[1]/body[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/select[1]",
"click ## @ id(\"globalSearch\")/div[1]/input[2] || /html[1]/body[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[1]/input[2]"
],
"target_text_res": [],
"target_url": "https://jocolibrary.bibliocommons.com/v2/search?query=Umberto+Eco&searchType=author",
"target_url_res": [
"query=Umberto+Eco",
"searchType=author"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,29 @@
{
"start_url": "http://osceola.librarycatalog.info/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"Term\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/div[1]/input[2]",
"click ## @ id(\"searchsubmit\") || /html[1]/body[1]/div[1]/div[2]/div[1]/div[1]/div[2]/form[1]/input[1]",
"select #2# @ id(\"ctrlSearchBars_searchbarKeyword_dropdownSearchBy\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[2]/td[2]/select[1]",
"click ## @ id(\"ctrlSearchBars_searchbarKeyword_buttonDoSearch\") || /html[1]/body[1]/form[1]/div[2]/div[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/div[1]/table[1]/tbody[1]/tr[1]/td[2]/table[1]/tbody[1]/tr[1]/td[2]/input[1]"
],
"target_text_res": [],
"target_url": "http://osceola.librarycatalog.info/polaris/search/searchresults.aspx?ctx=1.1033.0.0.2&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=*&query=&page=0&searchid=1",
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
]
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"start_url": "http://scottsdale.polarislibrary.com/polaris/search/",
"query_words": [
"find",
"books",
"by",
"author",
"Umberto Eco"
],
"query_annotations": [
"",
"",
"",
"",
"name"
],
"demonstration": [
"input_text #Umberto Eco# @ id(\"q\") || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/input[1]",
"click ## @ id(\"1\")/div[1]/form[1]/div[1]/div[1]/button[1] || /html[1]/body[1]/div[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[1]/form[1]/div[1]/div[1]/button[1]",
"click ## @ id(\"searchOptions\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/a[1]",
"select #2# @ id(\"dropdownSearchBy\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[2]/div[1]/div[1]/div[1]/div[1]/div[1]/div[2]/select[1]",
"click ## @ id(\"buttonDoSearchLabel\") || /html[1]/body[1]/div[2]/div[1]/div[1]/main[1]/div[1]/article[1]/section[1]/form[1]/div[3]/div[1]/div[1]/div[1]/div[1]/div[2]/div[1]/label[1]"
],
"target_text_res": [],
"target_url_res": [
"term=Umberto%20Eco",
"by=AU"
],
"target_url": "http://scottsdale.polarislibrary.com/polaris/search/searchresults.aspx?ctx=1.1033.0.0.3&type=Keyword&term=Umberto%20Eco&by=AU&sort=RELEVANCE&limit=TOM=*&query=&page=0&searchid=3"
}

Просмотреть файл

@ -0,0 +1,37 @@
{
"start_url": "http://mynd.rentlinx.com/",
"query_words": [
"rent",
"a",
"house",
"in",
"Seattle",
"with",
"3",
"bedrooms"
],
"query_annotations": [
"",
"",
"property type",
"",
"city",
"",
"number",
""
],
"demonstration": [
"input_text #Seattle# @ id(\"Location\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[1]/input[1]",
"select #5# @ id(\"MinBedrooms\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/select[1]",
"select #2# @ id(\"PropertyType\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[4]/select[1]",
"click ## @ id(\"rl-searchbox-form\")/ul[1]/li[5]/input[1] || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[5]/input[1]"
],
"target_text_res": [],
"target_url": "http://mynd.rentlinx.com/listings/minbeds:3/type:House/query:Seattle",
"target_url_res": [
"minbeds:3",
"type:House",
"query:Seattle"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,45 @@
{
"start_url": "http://mynd.rentlinx.com/",
"query_words": [
"rent",
"a",
"house",
"in",
"Seattle",
"with",
"3",
"bedrooms",
"at",
"1000",
"max"
],
"query_annotations": [
"",
"",
"property type",
"",
"city",
"",
"number",
"",
"",
"price",
""
],
"demonstration": [
"input_text #Seattle# @ id(\"Location\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[1]/input[1]",
"input_text #1000# @ id(\"MaxRent\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[2]/input[1]",
"select #5# @ id(\"MinBedrooms\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[3]/select[1]",
"select #2# @ id(\"PropertyType\") || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[4]/select[1]",
"click ## @ id(\"rl-searchbox-form\")/ul[1]/li[5]/input[1] || /html[1]/body[1]/div[3]/div[2]/div[1]/form[1]/div[1]/div[1]/div[1]/ul[1]/li[5]/input[1]"
],
"target_text_res": [],
"target_url": "http://mynd.rentlinx.com/listings/minbeds:3/type:House/query:Seattle/maxrent:1000",
"target_url_res": [
"minbeds:3",
"type:House",
"query:Seattle",
"maxrent:1000"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,46 @@
{
"start_url": "https://www.primelocation.com/to-rent/",
"query_words": [
"rent",
"a",
"house",
"in",
"Seattle",
"with",
"3",
"bedrooms",
"at",
"1000",
"max"
],
"query_annotations": [
"",
"",
"property type",
"",
"city",
"",
"number",
"",
"",
"price",
""
],
"demonstration": [
"input_text #Seattle# @ id(\"search-input-location\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[1]/input[1]",
"select #1# @ id(\"property_type\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[2]/div[7]/span[1]/select[1]",
"select #10# @ id(\"rent_price_max_per_month\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[2]/div[4]/span[1]/select[1]",
"select #4# @ id(\"beds_min\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[2]/div[8]/span[1]/select[1]",
"click ## @ id(\"search-submit\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[3]/div[2]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.primelocation.com/search/?q=Seattle&geo_autocomplete_identifier=&price_min=1000&price_max=&property_type=houses&beds_min=3&category=residential&price_frequency=per_month&furnished_state=&radius=&added=&results_sort=highest_price&keywords=&new_homes=&retirement_homes=true&shared_ownership=&include_auctions=true&include_sold=&include_shared_accommodation=true&include_rented=&search_source=to-rent&section=to-rent&view_type=grid",
"target_url_res": [
"q=Seattle",
"price_min=&",
"price_max=1000&",
"property_type=houses",
"beds_min=3"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,46 @@
{
"start_url": "https://www.zoopla.co.uk/to-rent/",
"query_words": [
"rent",
"a",
"house",
"in",
"Seattle",
"with",
"3",
"bedrooms",
"at",
"1000",
"max"
],
"query_annotations": [
"",
"",
"property type",
"",
"city",
"",
"number",
"",
"",
"price",
""
],
"demonstration": [
"input_text #Seattle# @ id(\"search-input-location\") || /html[1]/body[1]/div[2]/div[2]/div[1]/div[1]/div[1]/form[1]/div[2]/div[1]/div[1]/input[1]",
"select #1# @ id(\"property_type\") || /html[1]/body[1]/div[2]/div[2]/div[1]/div[1]/div[1]/form[1]/div[2]/div[1]/div[2]/div[7]/span[1]/select[1]",
"select #10# @ id(\"rent_price_max_per_month\") || /html[1]/body[1]/div[2]/div[2]/div[1]/div[1]/div[1]/form[1]/div[2]/div[1]/div[2]/div[4]/span[1]/select[1]",
"select #4# @ id(\"beds_min\") || /html[1]/body[1]/div[2]/div[2]/div[1]/div[1]/div[1]/form[1]/div[2]/div[1]/div[2]/div[8]/span[1]/select[1]",
"click ## @ id(\"search-submit\") || /html[1]/body[1]/div[2]/div[2]/div[1]/div[1]/div[1]/form[1]/div[2]/div[3]/div[2]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.zoopla.co.uk/search/?q=Seattle&geo_autocomplete_identifier=&price_min=1000&price_max=&property_type=houses&beds_min=3&category=residential&price_frequency=per_month&furnished_state=&radius=&added=&results_sort=newest_listings&keywords=&new_homes=&retirement_homes=true&shared_ownership=&include_auctions=true&include_sold=&include_shared_accommodation=true&include_rented=&search_source=to-rent&section=to-rent&view_type=list",
"target_url_res": [
"q=Seattle",
"price_min=&",
"price_max=1000&",
"property_type=houses",
"beds_min=3"
],
"replayable": true
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"start_url": "https://www.primelocation.com/to-rent/",
"query_words": [
"rent",
"a",
"house",
"in",
"Seattle",
"with",
"3",
"bedrooms"
],
"query_annotations": [
"",
"",
"property type",
"",
"city",
"",
"number",
""
],
"demonstration": [
"input_text #Seattle# @ id(\"search-input-location\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[1]/input[1]",
"select #1# @ id(\"property_type\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[2]/div[7]/span[1]/select[1]",
"select #4# @ id(\"beds_min\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[1]/div[2]/div[8]/span[1]/select[1]",
"click ## @ id(\"search-submit\") || /html[1]/body[1]/div[2]/div[1]/div[1]/div[1]/div[2]/div[1]/form[1]/div[2]/div[3]/div[2]/button[1]"
],
"target_text_res": [],
"target_url": "https://www.primelocation.com/search/?q=Seattle&geo_autocomplete_identifier=&price_min=&price_max=&property_type=houses&beds_min=3&category=residential&price_frequency=per_month&furnished_state=&radius=&added=&results_sort=highest_price&keywords=&new_homes=&retirement_homes=true&shared_ownership=&include_auctions=true&include_sold=&include_shared_accommodation=true&include_rented=&search_source=to-rent&section=to-rent&view_type=grid",
"target_url_res": [
"q=Seattle",
"price_min=&",
"price_max=&",
"property_type=houses",
"beds_min=3"
],
"replayable": true
}

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше