browsergym-workarena 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/.github/workflows/pypi.yml +3 -2
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/.github/workflows/unit_tests.yml +26 -24
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/PKG-INFO +12 -6
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/README.md +9 -3
- browsergym_workarena-0.2.1/dev/environment.yaml +13 -0
- browsergym_workarena-0.2.1/dev/requirements.txt +9 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/pyproject.toml +28 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/requirements.txt +1 -1
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/__init__.py +1 -1
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/all_menu.json +94 -94
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_service_catalog_item_list_task.json +7985 -7981
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/impersonation_users.json +2 -2
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/.gitignore +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/LICENSE +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/scripts/generate_knowledge_base.ipynb +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/api/__init__.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/api/requests.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/api/ui_themes.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/api/user.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/api/utils.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/config.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/forms/expected_change_request_form_fields.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/forms/expected_hardware_form_fields.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/forms/expected_incident_form_fields.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/forms/expected_problem_form_fields.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/forms/expected_user_form_fields.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/knowledge/kb_autopublish_workflow.xml +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/knowledge/knowledge_base.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_asset_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_change_request_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_hardware_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_incident_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_service_catalog_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/lists/expected_user_list_columns.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/setup_files/ui_themes/workarena_themes.xml +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/create_change_request_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/create_hardware_asset_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/create_incident_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/create_problem_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/create_user_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/dashboard_retrieval_minmax_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/dashboard_retrieval_value_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_asset_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_change_request_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_hardware_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_incident_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/filter_user_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/knowledge_base_configs.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_apple_mac_book_pro15_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_apple_watch_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_developer_laptop_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_development_laptop_pc_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_ipad_mini_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_ipad_pro_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_loaner_laptop_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_sales_laptop_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/order_standard_laptop_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/report_retrieval_minmax_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/report_retrieval_value_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_asset_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_change_request_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_hardware_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_incident_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_service_catalog_item_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/data_files/task_configs/sort_user_list_task.json +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/install.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/instance.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/__init__.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/base.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/dashboard.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/form.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/knowledge.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/list.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/navigation.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/README.md +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/extract_all_menu_items.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/generate_dashboard_configs.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/generate_forms.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/knowledge.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/list.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/navigation.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/service_catalog.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/scripts/validate.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/service_catalog.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/__init__.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/debug.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/form.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/js_utils.js +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/string.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/tasks/utils/utils.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/src/browsergym/workarena/utils.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_api.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_random_config_generation.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_snow_instance.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_task_from_config.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_task_general.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_task_setup.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_utils.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/test_validate.py +0 -0
- {browsergym_workarena-0.2.0 → browsergym_workarena-0.2.1}/tests/utils.py +0 -0
|
@@ -48,10 +48,11 @@ jobs:
|
|
|
48
48
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
49
49
|
|
|
50
50
|
github-release:
|
|
51
|
-
name: Sign with Sigstore and upload them to GitHub Release
|
|
51
|
+
name: Sign packages with Sigstore and upload them to GitHub Release
|
|
52
52
|
needs:
|
|
53
53
|
- publish-to-pypi
|
|
54
54
|
runs-on: ubuntu-latest
|
|
55
|
+
|
|
55
56
|
permissions:
|
|
56
57
|
contents: write # IMPORTANT: mandatory for making GitHub Releases
|
|
57
58
|
id-token: write # IMPORTANT: mandatory for sigstore
|
|
@@ -64,7 +65,7 @@ jobs:
|
|
|
64
65
|
path: dist/
|
|
65
66
|
|
|
66
67
|
- name: Sign the dists with Sigstore
|
|
67
|
-
uses: sigstore/gh-action-sigstore-python@
|
|
68
|
+
uses: sigstore/gh-action-sigstore-python@v2.1.1
|
|
68
69
|
with:
|
|
69
70
|
inputs: >-
|
|
70
71
|
./dist/*.tar.gz
|
|
@@ -34,38 +34,39 @@ jobs:
|
|
|
34
34
|
run: black . --check
|
|
35
35
|
|
|
36
36
|
browsergym-workarena-fast:
|
|
37
|
-
|
|
37
|
+
runs-on: ubuntu-latest
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
defaults:
|
|
40
|
+
run:
|
|
41
|
+
shell: bash -l {0}
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
steps:
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
- name: Checkout Repository
|
|
46
|
+
uses: actions/checkout@v4
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
- name: Set up Python
|
|
49
|
+
uses: actions/setup-python@v5
|
|
50
|
+
with:
|
|
51
|
+
python-version: '3.10'
|
|
52
|
+
cache: 'pip' # caching pip dependencies
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
- name: Pip install
|
|
55
|
+
working-directory: ./dev
|
|
56
|
+
run: pip install -r requirements.txt
|
|
56
57
|
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
- name: Pip list
|
|
59
|
+
run: pip list
|
|
59
60
|
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
- name: Install Playwright
|
|
62
|
+
run: playwright install --with-deps
|
|
62
63
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
- name: Run non-slow browsergym-workarena Unit Tests
|
|
65
|
+
env:
|
|
66
|
+
SNOW_INSTANCE_URL: ${{ secrets.SNOW_INSTANCE_URL }}
|
|
67
|
+
SNOW_INSTANCE_UNAME: ${{ secrets.SNOW_INSTANCE_UNAME }}
|
|
68
|
+
SNOW_INSTANCE_PWD: ${{ secrets.SNOW_INSTANCE_PWD }}
|
|
69
|
+
run: pytest -n 5 --durations=10 -m 'not slow and not pricy' --slowmo 1000 -v tests
|
|
69
70
|
|
|
70
71
|
browsergym-workarena-slow:
|
|
71
72
|
runs-on: ubuntu-latest
|
|
@@ -86,6 +87,7 @@ jobs:
|
|
|
86
87
|
cache: 'pip' # caching pip dependencies
|
|
87
88
|
|
|
88
89
|
- name: Pip install
|
|
90
|
+
working-directory: ./dev
|
|
89
91
|
run: pip install -r requirements.txt
|
|
90
92
|
|
|
91
93
|
- name: Pip list
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: browsergym-workarena
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: WorkArena benchmark for BrowserGym
|
|
5
5
|
Project-URL: homepage, https://github.com/ServiceNow/WorkArena
|
|
6
|
-
Author: Léo Boisvert, Alex Drouin, Maxime Gasse, Alex Lacoste, Manuel Del Verme
|
|
6
|
+
Author: Léo Boisvert, Alex Drouin, Maxime Gasse, Alex Lacoste, Manuel Del Verme, Megh Thakkar
|
|
7
7
|
License: Apache-2.0
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
@@ -13,7 +13,7 @@ Classifier: Operating System :: OS Independent
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
15
|
Requires-Python: >3.7
|
|
16
|
-
Requires-Dist: browsergym-core
|
|
16
|
+
Requires-Dist: browsergym-core>=0.2
|
|
17
17
|
Requires-Dist: english-words>=2.0.1
|
|
18
18
|
Requires-Dist: faker>=24.11.0
|
|
19
19
|
Requires-Dist: numpy>=1.14
|
|
@@ -35,11 +35,11 @@ WorkArena is included in [BrowserGym](https://github.com/ServiceNow/BrowserGym),
|
|
|
35
35
|
https://github.com/ServiceNow/WorkArena/assets/2374980/68640f09-7d6f-4eb1-b556-c294a6afef70
|
|
36
36
|
|
|
37
37
|
## ⚠️ Pre-Release warning ⚠️
|
|
38
|
-
Please note that the WorkArena benchmark is still undergoing minor bug fixes and updates, which may cause discrepancies with results reported in our latest arXiv preprint. We plan to release soon a stable version of WorkArena
|
|
38
|
+
Please note that the WorkArena benchmark is still undergoing minor bug fixes and updates, which may cause discrepancies with results reported in our latest arXiv preprint. We plan to release soon a stable version of WorkArena with enhanced stability, and a final version v1.0.0 with a new suite of tasks.
|
|
39
39
|
|
|
40
40
|
## Benchmark Contents
|
|
41
41
|
|
|
42
|
-
At the moment, WorkArena includes `18,050` task instances drawn from `
|
|
42
|
+
At the moment, WorkArena includes `18,050` task instances drawn from `33` tasks that cover the main components of the ServiceNow user interface. The following videos show an agent built on `GPT-4-vision` interacting with every such component. As emphasized by our results, this benchmark is not solved and thus, the performance of the agent is not always on point.
|
|
43
43
|
|
|
44
44
|
### Knowledge Bases
|
|
45
45
|
|
|
@@ -75,6 +75,12 @@ https://github.com/ServiceNow/WorkArena/assets/1726818/7538b3ef-d39b-4978-b9ea-8
|
|
|
75
75
|
|
|
76
76
|
https://github.com/ServiceNow/WorkArena/assets/1726818/ca26dfaf-2358-4418-855f-80e482435e6e
|
|
77
77
|
|
|
78
|
+
### Dashboards
|
|
79
|
+
|
|
80
|
+
**Goal:** The agent must extract information from a dashboard.
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
78
84
|
## Getting Started
|
|
79
85
|
|
|
80
86
|
To setup WorkArena, you will need to get your own ServiceNow instance, install our Python package, and upload some data to your instance. Follow the steps below to achieve this.
|
|
@@ -82,7 +88,7 @@ To setup WorkArena, you will need to get your own ServiceNow instance, install o
|
|
|
82
88
|
### a) Create a ServiceNow Developer Instance
|
|
83
89
|
|
|
84
90
|
1. Go to https://developer.servicenow.com/ and create an account.
|
|
85
|
-
2. Click on `Request an instance` and select the `
|
|
91
|
+
2. Click on `Request an instance` and select the `Washington` release (initializing the instance will take a few minutes)
|
|
86
92
|
3. Once the instance is ready, you should see your instance URL and credentials. If not, click _Return to the Developer Portal_, then navigate to _Manage instance password_ and click _Reset instance password_.
|
|
87
93
|
4. You should now see your URL and credentials. Based on this information, set the following environment variables:
|
|
88
94
|
* `SNOW_INSTANCE_URL`: The URL of your ServiceNow developer instance
|
|
@@ -11,11 +11,11 @@ WorkArena is included in [BrowserGym](https://github.com/ServiceNow/BrowserGym),
|
|
|
11
11
|
https://github.com/ServiceNow/WorkArena/assets/2374980/68640f09-7d6f-4eb1-b556-c294a6afef70
|
|
12
12
|
|
|
13
13
|
## ⚠️ Pre-Release warning ⚠️
|
|
14
|
-
Please note that the WorkArena benchmark is still undergoing minor bug fixes and updates, which may cause discrepancies with results reported in our latest arXiv preprint. We plan to release soon a stable version of WorkArena
|
|
14
|
+
Please note that the WorkArena benchmark is still undergoing minor bug fixes and updates, which may cause discrepancies with results reported in our latest arXiv preprint. We plan to release soon a stable version of WorkArena with enhanced stability, and a final version v1.0.0 with a new suite of tasks.
|
|
15
15
|
|
|
16
16
|
## Benchmark Contents
|
|
17
17
|
|
|
18
|
-
At the moment, WorkArena includes `18,050` task instances drawn from `
|
|
18
|
+
At the moment, WorkArena includes `18,050` task instances drawn from `33` tasks that cover the main components of the ServiceNow user interface. The following videos show an agent built on `GPT-4-vision` interacting with every such component. As emphasized by our results, this benchmark is not solved and thus, the performance of the agent is not always on point.
|
|
19
19
|
|
|
20
20
|
### Knowledge Bases
|
|
21
21
|
|
|
@@ -51,6 +51,12 @@ https://github.com/ServiceNow/WorkArena/assets/1726818/7538b3ef-d39b-4978-b9ea-8
|
|
|
51
51
|
|
|
52
52
|
https://github.com/ServiceNow/WorkArena/assets/1726818/ca26dfaf-2358-4418-855f-80e482435e6e
|
|
53
53
|
|
|
54
|
+
### Dashboards
|
|
55
|
+
|
|
56
|
+
**Goal:** The agent must extract information from a dashboard.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
54
60
|
## Getting Started
|
|
55
61
|
|
|
56
62
|
To setup WorkArena, you will need to get your own ServiceNow instance, install our Python package, and upload some data to your instance. Follow the steps below to achieve this.
|
|
@@ -58,7 +64,7 @@ To setup WorkArena, you will need to get your own ServiceNow instance, install o
|
|
|
58
64
|
### a) Create a ServiceNow Developer Instance
|
|
59
65
|
|
|
60
66
|
1. Go to https://developer.servicenow.com/ and create an account.
|
|
61
|
-
2. Click on `Request an instance` and select the `
|
|
67
|
+
2. Click on `Request an instance` and select the `Washington` release (initializing the instance will take a few minutes)
|
|
62
68
|
3. Once the instance is ready, you should see your instance URL and credentials. If not, click _Return to the Developer Portal_, then navigate to _Manage instance password_ and click _Reset instance password_.
|
|
63
69
|
4. You should now see your URL and credentials. Based on this information, set the following environment variables:
|
|
64
70
|
* `SNOW_INSTANCE_URL`: The URL of your ServiceNow developer instance
|
|
@@ -11,6 +11,7 @@ authors = [
|
|
|
11
11
|
{name = "Maxime Gasse"},
|
|
12
12
|
{name = "Alex Lacoste"},
|
|
13
13
|
{name = "Manuel Del Verme"},
|
|
14
|
+
{name = "Megh Thakkar"},
|
|
14
15
|
]
|
|
15
16
|
readme = "README.md"
|
|
16
17
|
requires-python = ">3.7"
|
|
@@ -39,3 +40,30 @@ files = ["requirements.txt"]
|
|
|
39
40
|
|
|
40
41
|
[tool.hatch.build.targets.wheel]
|
|
41
42
|
packages = ["src/browsergym"]
|
|
43
|
+
|
|
44
|
+
[tool.black]
|
|
45
|
+
line-length = 100
|
|
46
|
+
include = '\.pyi?$'
|
|
47
|
+
exclude = '''
|
|
48
|
+
/(
|
|
49
|
+
\.eggs
|
|
50
|
+
| \.git
|
|
51
|
+
| \.hg
|
|
52
|
+
| \.mypy_cache
|
|
53
|
+
| \.nox
|
|
54
|
+
| \.tox
|
|
55
|
+
| \.venv
|
|
56
|
+
| _build
|
|
57
|
+
| buck-out
|
|
58
|
+
| build
|
|
59
|
+
| dist
|
|
60
|
+
)/
|
|
61
|
+
'''
|
|
62
|
+
|
|
63
|
+
[tool.pytest.ini_options]
|
|
64
|
+
filterwarnings = [
|
|
65
|
+
'ignore::UserWarning:gymnasium.*:', # too many "The obs is not within the observation space." warnings.
|
|
66
|
+
]
|
|
67
|
+
markers = [
|
|
68
|
+
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
|
|
69
|
+
]
|
|
@@ -439,11 +439,6 @@
|
|
|
439
439
|
"module": "Design > Information Object",
|
|
440
440
|
"url": "/now/nav/ui/classic/params/target/cmdb_ci_information_object_list.do%3Fsysparm_userpref_module%3D29382682235200106682110d96bf656d"
|
|
441
441
|
},
|
|
442
|
-
{
|
|
443
|
-
"application": "CSDM",
|
|
444
|
-
"module": "Manage Technical Services > Application Service",
|
|
445
|
-
"url": "/now/nav/ui/classic/params/target/cmdb_ci_service_auto_list.do%3Fsysparm_userpref_module%3Ddeaba64e231200106682110d96bf65ca%26sysparm_view%3Dcsdm_view%26sysparm_query%3Dservice_classification%253DApplication%2BService%255EEQ"
|
|
446
|
-
},
|
|
447
442
|
{
|
|
448
443
|
"application": "CSDM",
|
|
449
444
|
"module": "Manage Technical Services > Technical Service",
|
|
@@ -1687,7 +1682,7 @@
|
|
|
1687
1682
|
{
|
|
1688
1683
|
"application": "Conversational Interfaces",
|
|
1689
1684
|
"module": "Virtual Agent > Designer",
|
|
1690
|
-
"url": "/now/nav/ui/classic/params/target/%24conversation-builder.do"
|
|
1685
|
+
"url": "/now/nav/ui/classic/params/target/%24conversation-builder.do%23%2F"
|
|
1691
1686
|
},
|
|
1692
1687
|
{
|
|
1693
1688
|
"application": "Conversational Interfaces",
|
|
@@ -2101,13 +2096,8 @@
|
|
|
2101
2096
|
},
|
|
2102
2097
|
{
|
|
2103
2098
|
"application": "Issue Auto Resolution",
|
|
2104
|
-
"module": "
|
|
2105
|
-
"url": "/now/
|
|
2106
|
-
},
|
|
2107
|
-
{
|
|
2108
|
-
"application": "Issue Auto Resolution",
|
|
2109
|
-
"module": "Simulation",
|
|
2110
|
-
"url": "/now/nav/ui/classic/params/target/sys_cs_auto_resolution_simulation_configuration_list.do%3Fsysparm_userpref_module%3De1ea0bd05332011031a5ddeeff7b1296"
|
|
2099
|
+
"module": "Simulations",
|
|
2100
|
+
"url": "/now/conversation/iar/simulation/home"
|
|
2111
2101
|
},
|
|
2112
2102
|
{
|
|
2113
2103
|
"application": "Knowledge",
|
|
@@ -2229,6 +2219,11 @@
|
|
|
2229
2219
|
"module": "Feedback Management > My Submitted Tasks",
|
|
2230
2220
|
"url": "/now/nav/ui/classic/params/target/kb_feedback_task_list.do%3Fsysparm_userpref_module%3Dbef2794067230300d358bb2d07415a67%26sysparm_query%3Dopened_byDYNAMIC90d1921e5f510100a9ad2572f2b477fe%255EEQ"
|
|
2231
2221
|
},
|
|
2222
|
+
{
|
|
2223
|
+
"application": "MID Server",
|
|
2224
|
+
"module": "Audit Logs > Command Audit Logs",
|
|
2225
|
+
"url": "/now/nav/ui/classic/params/target/ecc_agent_command_audit_log_list.do%3Fsysparm_userpref_module%3D091f72daff1550103894c787d53bf11b"
|
|
2226
|
+
},
|
|
2232
2227
|
{
|
|
2233
2228
|
"application": "MID Server",
|
|
2234
2229
|
"module": "Extensions > MID SNMP Trap Listener",
|
|
@@ -2244,11 +2239,6 @@
|
|
|
2244
2239
|
"module": "Profiles and Deployments > MID Deployment Requests",
|
|
2245
2240
|
"url": "/now/nav/ui/classic/params/target/mid_server_deployment_list.do%3Fsysparm_userpref_module%3D7db2c83453353010347cddeeff7b12b7"
|
|
2246
2241
|
},
|
|
2247
|
-
{
|
|
2248
|
-
"application": "MID Server",
|
|
2249
|
-
"module": "Profiles and Deployments > MID Deployment Templates",
|
|
2250
|
-
"url": "/now/nav/ui/classic/params/target/mid_deployment_template_list.do%3Fsysparm_userpref_module%3D03a3aea653763010347cddeeff7b121d"
|
|
2251
|
-
},
|
|
2252
2242
|
{
|
|
2253
2243
|
"application": "MID Server",
|
|
2254
2244
|
"module": "Profiles and Deployments > MID Server Lifecycle Events",
|
|
@@ -2329,41 +2319,6 @@
|
|
|
2329
2319
|
"module": "Guided Setup",
|
|
2330
2320
|
"url": "/now/nav/ui/classic/params/target/%24guided_setup.do%23%2Fcontent%2Ff22be6a20b111200a8d7a12cf6673a57%3Ffocus%3Dbc577ee20b111200a8d7a12cf6673aba%26group_focuses%3D%26home_options%3Dintro%26scroll_to%3D%26filter%3Dall"
|
|
2331
2321
|
},
|
|
2332
|
-
{
|
|
2333
|
-
"application": "Now Experience Framework",
|
|
2334
|
-
"module": "Actions and Events > Action Bar Declarative Actions",
|
|
2335
|
-
"url": "/now/nav/ui/classic/params/target/sys_declarative_action_assignment_list.do%3Fsysparm_fixed_query%3Dmodel%253D360935e9534723003eddddeeff7b127d%5Eform_position%3Daction_bar%26sysparm_view%3Dform_action"
|
|
2336
|
-
},
|
|
2337
|
-
{
|
|
2338
|
-
"application": "Now Experience Framework",
|
|
2339
|
-
"module": "Actions and Events > UX Declarative Actions",
|
|
2340
|
-
"url": "/now/nav/ui/classic/params/target/sys_declarative_action_assignment_list.do%3Fsysparm_fixed_query%3Dmodel%253D607c997b73210010fd843c78caf6a752%26sysparm_view%3Duxf_actions"
|
|
2341
|
-
},
|
|
2342
|
-
{
|
|
2343
|
-
"application": "Now Experience Framework",
|
|
2344
|
-
"module": "Actions and Events > UX Events",
|
|
2345
|
-
"url": "/now/nav/ui/classic/params/target/sys_ux_event_list.do%3Fsysparm_userpref_module%3D79a12ec773601010fd843c78caf6a71b"
|
|
2346
|
-
},
|
|
2347
|
-
{
|
|
2348
|
-
"application": "Now Experience Framework",
|
|
2349
|
-
"module": "Actions and Events > UX Form Action Groups",
|
|
2350
|
-
"url": "/now/nav/ui/classic/params/target/sys_ux_form_action_layout_group_list.do%3Fsysparm_userpref_module%3D86de4e9653dd1010ac9bddeeff7b1296"
|
|
2351
|
-
},
|
|
2352
|
-
{
|
|
2353
|
-
"application": "Now Experience Framework",
|
|
2354
|
-
"module": "Actions and Events > UX Form Action Layouts",
|
|
2355
|
-
"url": "/now/nav/ui/classic/params/target/sys_ux_form_action_layout_list.do%3Fsysparm_userpref_module%3D8a0f8e9653dd1010ac9bddeeff7b12df"
|
|
2356
|
-
},
|
|
2357
|
-
{
|
|
2358
|
-
"application": "Now Experience Framework",
|
|
2359
|
-
"module": "Actions and Events > UX Form Actions",
|
|
2360
|
-
"url": "/now/nav/ui/classic/params/target/sys_ux_form_action_list.do%3Fsysparm_userpref_module%3D516e0a9653dd1010ac9bddeeff7b123d"
|
|
2361
|
-
},
|
|
2362
|
-
{
|
|
2363
|
-
"application": "Now Experience Framework",
|
|
2364
|
-
"module": "Actions and Events > UX Form Actions Configs",
|
|
2365
|
-
"url": "/now/nav/ui/classic/params/target/sys_ux_action_config_list.do%3Fsysparm_userpref_module%3Dc3616ac773601010fd843c78caf6a7ea"
|
|
2366
|
-
},
|
|
2367
2322
|
{
|
|
2368
2323
|
"application": "Now Experience Framework",
|
|
2369
2324
|
"module": "Building Blocks > Audiences",
|
|
@@ -2902,12 +2857,12 @@
|
|
|
2902
2857
|
{
|
|
2903
2858
|
"application": "Predictive Intelligence",
|
|
2904
2859
|
"module": "Clustering > Solution Definitions",
|
|
2905
|
-
"url": "/now/nav/ui/classic/params/target/ml_capability_definition_clustering_list.do%3Fsysparm_userpref_module%3D5ee127a80f312300aeb1b211ff767e1d%26sysparm_view%3Dml%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Drequest_source%3D%5EORrequest_source%3Dui"
|
|
2860
|
+
"url": "/now/nav/ui/classic/params/target/ml_capability_definition_clustering_list.do%3Fsysparm_userpref_module%3D5ee127a80f312300aeb1b211ff767e1d%26sysparm_view%3Dml%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Drequest_source%3D%5EORrequest_source%3Dui%5EORtriggered_source%3D%5EORtriggered_source%3DUI"
|
|
2906
2861
|
},
|
|
2907
2862
|
{
|
|
2908
2863
|
"application": "Predictive Intelligence",
|
|
2909
2864
|
"module": "Clustering > Solutions",
|
|
2910
|
-
"url": "/now/nav/ui/classic/params/target/ml_solution_list.do%3Fsysparm_userpref_module%3Dd61227a80f312300aeb1b211ff767ed3%26sysparm_view%3Dclustering%26sysparm_query%3DGROUPBYsolution_name%5EORDERBYDESCactive%5EORDERBYDESCversion%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Dcapability%3Dclustering_trainer%5Erequest_source%3D%5EORrequest_source%3Dui"
|
|
2865
|
+
"url": "/now/nav/ui/classic/params/target/ml_solution_list.do%3Fsysparm_userpref_module%3Dd61227a80f312300aeb1b211ff767ed3%26sysparm_view%3Dclustering%26sysparm_query%3DGROUPBYsolution_name%5EORDERBYDESCactive%5EORDERBYDESCversion%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Dcapability%3Dclustering_trainer%5EORcapability%3Dworkflow_clustering_trainer%5Erequest_source%3D%5EORrequest_source%3Dui%5EORtriggered_source%3D%5EORtriggered_source%3DUI"
|
|
2911
2866
|
},
|
|
2912
2867
|
{
|
|
2913
2868
|
"application": "Predictive Intelligence",
|
|
@@ -2922,12 +2877,12 @@
|
|
|
2922
2877
|
{
|
|
2923
2878
|
"application": "Predictive Intelligence",
|
|
2924
2879
|
"module": "Similarity > Solution Definitions",
|
|
2925
|
-
"url": "/now/nav/ui/classic/params/target/ml_capability_definition_similarity_list.do%3Fsysparm_userpref_module%3D243939a687321300f018f7c736cb0bc0%26sysparm_view%3Dml%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Drequest_source%3D%5EORrequest_source%3Dui"
|
|
2880
|
+
"url": "/now/nav/ui/classic/params/target/ml_capability_definition_similarity_list.do%3Fsysparm_userpref_module%3D243939a687321300f018f7c736cb0bc0%26sysparm_view%3Dml%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Drequest_source%3D%5EORrequest_source%3Dui%5EORtriggered_source%3D%5EORtriggered_source%3DUI"
|
|
2926
2881
|
},
|
|
2927
2882
|
{
|
|
2928
2883
|
"application": "Predictive Intelligence",
|
|
2929
2884
|
"module": "Similarity > Solutions",
|
|
2930
|
-
"url": "/now/nav/ui/classic/params/target/ml_solution_list.do%3Fsysparm_userpref_module%3D655979a687321300f018f7c736cb0bf6%26sysparm_view%3Dsimilarity%26sysparm_query%3DGROUPBYsolution_name%5EORDERBYDESCactive%5EORDERBYDESCversion%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Dcapability%3Dsimilarity_trainer%5Erequest_source%3D%5EORrequest_source%3Dui"
|
|
2885
|
+
"url": "/now/nav/ui/classic/params/target/ml_solution_list.do%3Fsysparm_userpref_module%3D655979a687321300f018f7c736cb0bf6%26sysparm_view%3Dsimilarity%26sysparm_query%3DGROUPBYsolution_name%5EORDERBYDESCactive%5EORDERBYDESCversion%26sysparm_view_forced%3Dtrue%26sysparm_fixed_query%3Dcapability%3Dsimilarity_trainer%5EORcapability%3Dworkflow_similarity_trainer%5Erequest_source%3D%5EORrequest_source%3Dui%5EORtriggered_source%3D%5EORtriggered_source%3DUI"
|
|
2931
2886
|
},
|
|
2932
2887
|
{
|
|
2933
2888
|
"application": "Problem",
|
|
@@ -2964,6 +2919,11 @@
|
|
|
2964
2919
|
"module": "Flow Administration > Event Queue",
|
|
2965
2920
|
"url": "/now/nav/ui/classic/params/target/sysevent_list.do%3Fsysparm_userpref_module%3D58206ec053113200f5bf435723dc34ef%26sysparm_query%3Dqueue%253Dflow_engine%255Estate%253Dready%255EEQ"
|
|
2966
2921
|
},
|
|
2922
|
+
{
|
|
2923
|
+
"application": "Process Automation",
|
|
2924
|
+
"module": "Flow Administration > FDIH Dashboard",
|
|
2925
|
+
"url": "/now/fdih-dashboards/home/params/selected-tab-index/0"
|
|
2926
|
+
},
|
|
2967
2927
|
{
|
|
2968
2928
|
"application": "Process Automation",
|
|
2969
2929
|
"module": "Flow Administration > Feature Access List",
|
|
@@ -2974,11 +2934,6 @@
|
|
|
2974
2934
|
"module": "Flow Administration > Inbound Email Flows",
|
|
2975
2935
|
"url": "/now/nav/ui/classic/params/target/sys_hub_trigger_instance_list.do%3Fsysparm_userpref_module%3D46268b5653332300eb7c0a1806dc34d7%26sysparm_query%3Dtrigger_definition%253D6f0180400b320300f4eb8bf637673ad4%255Eflow.sys_class_name%253Dsys_hub_flow%255EEQ"
|
|
2976
2936
|
},
|
|
2977
|
-
{
|
|
2978
|
-
"application": "Process Automation",
|
|
2979
|
-
"module": "Flow Administration > Operations Dashboard",
|
|
2980
|
-
"url": "/now/fdih-dashboards/home/params/selected-tab-index/0"
|
|
2981
|
-
},
|
|
2982
2937
|
{
|
|
2983
2938
|
"application": "Process Automation",
|
|
2984
2939
|
"module": "Flow Administration > Pre-Compiled Actions",
|
|
@@ -3084,11 +3039,6 @@
|
|
|
3084
3039
|
"module": "Parameters",
|
|
3085
3040
|
"url": "/now/nav/ui/classic/params/target/quickactions_param_list.do%3Fsysparm_userpref_module%3D2fdbfb9567132300a0bd35e643415a2a"
|
|
3086
3041
|
},
|
|
3087
|
-
{
|
|
3088
|
-
"application": "Recommendation Framework",
|
|
3089
|
-
"module": "Administration > Recommendation Properties",
|
|
3090
|
-
"url": "/now/nav/ui/classic/params/target/system_properties_ui.do%3Fsysparm_title%3DRecommendation%2520Properties%26sysparm_category%3DRule%2520Active%2520Properties%2CExperience%2520Threshold%2520Properties"
|
|
3091
|
-
},
|
|
3092
3042
|
{
|
|
3093
3043
|
"application": "Reports",
|
|
3094
3044
|
"module": "Administration > All",
|
|
@@ -3397,7 +3347,7 @@
|
|
|
3397
3347
|
{
|
|
3398
3348
|
"application": "Service Catalog",
|
|
3399
3349
|
"module": "Catalog Definitions > Content Items",
|
|
3400
|
-
"url": "/now/nav/ui/classic/params/target/sc_cat_item_content_list.do%3Fsysparm_userpref_module%3Dd32ddd200a0a0b1200a1edd1b630649b"
|
|
3350
|
+
"url": "/now/nav/ui/classic/params/target/sc_cat_item_content_list.do%3Fsysparm_userpref_module%3Dd32ddd200a0a0b1200a1edd1b630649b%26sysparm_query%3Dcontent_type%2521%253Ddynamic%255EEQ"
|
|
3401
3351
|
},
|
|
3402
3352
|
{
|
|
3403
3353
|
"application": "Service Catalog",
|
|
@@ -3739,11 +3689,6 @@
|
|
|
3739
3689
|
"module": "Strategic Priorities",
|
|
3740
3690
|
"url": "/now/nav/ui/classic/params/target/sn_gf_strategy_list.do%3Fsysparm_userpref_module%3D80d70944538630103913ddeeff7b1288"
|
|
3741
3691
|
},
|
|
3742
|
-
{
|
|
3743
|
-
"application": "Subscription Management",
|
|
3744
|
-
"module": "Properties",
|
|
3745
|
-
"url": "/now/nav/ui/classic/params/target/system_properties_ui.do%3Fsysparm_title%3DSubscription%2520Management%2520Properties%26sysparm_category%3DSubscriptions%2CEnforcement%2520Overrides"
|
|
3746
|
-
},
|
|
3747
3692
|
{
|
|
3748
3693
|
"application": "Survey",
|
|
3749
3694
|
"module": "Administration > Custom Metric Type",
|
|
@@ -3792,7 +3737,7 @@
|
|
|
3792
3737
|
{
|
|
3793
3738
|
"application": "System Applications",
|
|
3794
3739
|
"module": "All Available Applications > All",
|
|
3795
|
-
"url": "/now/
|
|
3740
|
+
"url": "/now/app-manager/home/tab/available_for_you/sort/recently_released"
|
|
3796
3741
|
},
|
|
3797
3742
|
{
|
|
3798
3743
|
"application": "System Applications",
|
|
@@ -3894,11 +3839,6 @@
|
|
|
3894
3839
|
"module": "NowMQ > NowMQ Messages",
|
|
3895
3840
|
"url": "/now/nav/ui/classic/params/target/sys_nowmq_message_list.do%3Fsysparm_userpref_module%3D7ede3c0053b10110b72addeeff7b12e9"
|
|
3896
3841
|
},
|
|
3897
|
-
{
|
|
3898
|
-
"application": "System Definition",
|
|
3899
|
-
"module": "NowMQ > NowMQ Messages Archive",
|
|
3900
|
-
"url": "/now/nav/ui/classic/params/target/sys_nowmq_message_archive_list.do%3Fsysparm_userpref_module%3Dca1f344053b10110b72addeeff7b12c7"
|
|
3901
|
-
},
|
|
3902
3842
|
{
|
|
3903
3843
|
"application": "System Definition",
|
|
3904
3844
|
"module": "NowMQ > NowMQ Provider Parameters",
|
|
@@ -4899,6 +4839,81 @@
|
|
|
4899
4839
|
"module": "Themes",
|
|
4900
4840
|
"url": "/now/nav/ui/classic/params/target/sys_ui_theme_list.do%3Fsysparm_userpref_module%3Dfdc86ffcc0a8820100cd1d577a407ce6"
|
|
4901
4841
|
},
|
|
4842
|
+
{
|
|
4843
|
+
"application": "System Web Services",
|
|
4844
|
+
"module": "REST > CORS Rules",
|
|
4845
|
+
"url": "/now/nav/ui/classic/params/target/sys_cors_rule_list.do%3Fsysparm_userpref_module%3Dcbbd9e02473002004695d7527c9a719e"
|
|
4846
|
+
},
|
|
4847
|
+
{
|
|
4848
|
+
"application": "System Web Services",
|
|
4849
|
+
"module": "REST > Example Client Apps",
|
|
4850
|
+
"url": "/now/nav/ui/classic/params/target/example_apps_list.do"
|
|
4851
|
+
},
|
|
4852
|
+
{
|
|
4853
|
+
"application": "System Web Services",
|
|
4854
|
+
"module": "REST > Insert Multiple",
|
|
4855
|
+
"url": "/now/nav/ui/classic/params/target/sys_rest_insert_multiple_list.do%3Fsysparm_userpref_module%3D9eb73373ff1110105cf343d0653bf140"
|
|
4856
|
+
},
|
|
4857
|
+
{
|
|
4858
|
+
"application": "System Web Services",
|
|
4859
|
+
"module": "REST > Rate Limit Rules",
|
|
4860
|
+
"url": "/now/nav/ui/classic/params/target/sys_rate_limit_rules_list.do%3Fsysparm_userpref_module%3D1a0bac1c3b120300de4aa2e334efc41b"
|
|
4861
|
+
},
|
|
4862
|
+
{
|
|
4863
|
+
"application": "System Web Services",
|
|
4864
|
+
"module": "REST > Rate Limit Violations",
|
|
4865
|
+
"url": "/now/nav/ui/classic/params/target/sys_rate_limit_violations_list.do%3Fsysparm_userpref_module%3D6a3320e63b001300de4aa2e334efc442%26sysparm_query%3Dsys_created_onONCurrent%2Bhour%2540javascript%253Ags.beginningOfCurrentHour%2528%2529%2540javascript%253Ags.endOfCurrentHour%2528%2529%255EEQ"
|
|
4866
|
+
},
|
|
4867
|
+
{
|
|
4868
|
+
"application": "Targeted Communications",
|
|
4869
|
+
"module": "Active Publications",
|
|
4870
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_publication_list.do%3Fsysparm_userpref_module%3Dbfdda483d72302004f1e82285e61039f%26sysparm_query%3Dstage%2521%253Dexpired%255Estage%2521%253Dcancelled%255EEQ"
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
"application": "Targeted Communications",
|
|
4874
|
+
"module": "Create New Publication",
|
|
4875
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_publication.do%3Fsys_id%3D-1%26sysparm_stack%3Dsn_publications_publication_list.do"
|
|
4876
|
+
},
|
|
4877
|
+
{
|
|
4878
|
+
"application": "Targeted Communications",
|
|
4879
|
+
"module": "Draft Publications",
|
|
4880
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_publication_list.do%3Fsysparm_userpref_module%3D7cca3965d70112004f1e82285e6103f4%26sysparm_query%3Dstage%253Dauthor%255EEQ"
|
|
4881
|
+
},
|
|
4882
|
+
{
|
|
4883
|
+
"application": "Targeted Communications",
|
|
4884
|
+
"module": "Expired Publications",
|
|
4885
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_publication_list.do%3Fsysparm_userpref_module%3D20880b46d7b302004f1e82285e6103fe%26sysparm_query%3Dstage%253Dexpired%255EEQ"
|
|
4886
|
+
},
|
|
4887
|
+
{
|
|
4888
|
+
"application": "Targeted Communications",
|
|
4889
|
+
"module": "Publication Workflow",
|
|
4890
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_workflow_config.do%3Fsysparm_stack%3Dsn_publications_workflow_config_list.do%26sysparm_query%3Dsys_id%253D6c9b0e65c30112004bd67bfaa2d3ae56%255EEQ"
|
|
4891
|
+
},
|
|
4892
|
+
{
|
|
4893
|
+
"application": "Targeted Communications",
|
|
4894
|
+
"module": "Recipients Lists",
|
|
4895
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_recipients_list_list.do%3Fsysparm_userpref_module%3D4d2dee55d70112004f1e82285e6103dd"
|
|
4896
|
+
},
|
|
4897
|
+
{
|
|
4898
|
+
"application": "Targeted Communications",
|
|
4899
|
+
"module": "Recurrences",
|
|
4900
|
+
"url": "/now/nav/ui/classic/params/target/sn_publications_recurrence_list.do%3Fsysparm_userpref_module%3Dc6b5503dd73302004f1e82285e6103e1"
|
|
4901
|
+
},
|
|
4902
|
+
{
|
|
4903
|
+
"application": "Upgrade Center",
|
|
4904
|
+
"module": "Administration > Properties",
|
|
4905
|
+
"url": "/now/nav/ui/classic/params/target/system_properties_ui.do%3Fsysparm_title%3DUpgrade%2520Center%2520Properties%26sysparm_category%3DUpgrade%2520Duration%2520Estimation%2520Properties%2CUpgrade%2520Visual%2520Task%2520Board%2520Properties%2CUpgrade%2520Plan%2520Properties"
|
|
4906
|
+
},
|
|
4907
|
+
{
|
|
4908
|
+
"application": "Upgrade Center",
|
|
4909
|
+
"module": "Administration > Upgrade Center VTB Labels",
|
|
4910
|
+
"url": "/now/nav/ui/classic/params/target/upgrade_task_board_label_list.do%3Fsysparm_userpref_module%3De09b9a60ff33001078ad6b7e0c46bda8"
|
|
4911
|
+
},
|
|
4912
|
+
{
|
|
4913
|
+
"application": "Upgrade Center",
|
|
4914
|
+
"module": "Administration > Upgrade Plan Notification",
|
|
4915
|
+
"url": "/now/nav/ui/classic/params/target/sysevent_email_action.do%3Fsysparm_stack%3Dsysevent_email_action_list.do%26sysparm_query%3Dname%253DUpgrade%2BPlan%2Bpreparation%2Berror%255EEQ"
|
|
4916
|
+
},
|
|
4902
4917
|
{
|
|
4903
4918
|
"application": "Usage Tracking Consent",
|
|
4904
4919
|
"module": "Enable/Disable Tracking",
|
|
@@ -4964,21 +4979,6 @@
|
|
|
4964
4979
|
"module": "Live Workflows > History",
|
|
4965
4980
|
"url": "/now/nav/ui/classic/params/target/wf_history_list.do%3Fsysparm_userpref_module%3Da72f02d2c0a80164005d9d903ea839ad"
|
|
4966
4981
|
},
|
|
4967
|
-
{
|
|
4968
|
-
"application": "Workspace Experience",
|
|
4969
|
-
"module": "Actions & Components > Field Decorators",
|
|
4970
|
-
"url": "/now/nav/ui/classic/params/target/sys_declarative_action_assignment_list.do%3Fsysparm_fixed_query%3Dmodel%253D15920e6d534723003eddddeeff7b1244%26sysparm_view%3Ddecorators%0D%0A"
|
|
4971
|
-
},
|
|
4972
|
-
{
|
|
4973
|
-
"application": "Workspace Experience",
|
|
4974
|
-
"module": "Actions & Components > List Actions",
|
|
4975
|
-
"url": "/now/nav/ui/classic/params/target/sys_declarative_action_assignment_list.do%3Fsysparm_fixed_query%3Dmodel%253Dc3547169534723003eddddeeff7b126c%26sysparm_view%3Dlist_action"
|
|
4976
|
-
},
|
|
4977
|
-
{
|
|
4978
|
-
"application": "Workspace Experience",
|
|
4979
|
-
"module": "Actions & Components > Related List Actions",
|
|
4980
|
-
"url": "/now/nav/ui/classic/params/target/sys_declarative_action_assignment_list.do%3Fsysparm_fixed_query%3Dmodel%253Dd91731a9534723003eddddeeff7b121c%26sysparm_view%3Dlist_action"
|
|
4981
|
-
},
|
|
4982
4982
|
{
|
|
4983
4983
|
"application": "Workspace Experience",
|
|
4984
4984
|
"module": "Forms > UI Action Groups",
|