browsergym-workarena 0.1.0rc6__py3-none-any.whl → 0.1.0rc7__py3-none-any.whl
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/__init__.py +6 -2
- browsergym/workarena/data_files/setup_files/lists/expected_asset_list_columns.json +34 -1
- browsergym/workarena/data_files/setup_files/lists/expected_change_request_list_columns.json +48 -1
- browsergym/workarena/data_files/setup_files/lists/expected_hardware_list_columns.json +53 -1
- browsergym/workarena/data_files/setup_files/lists/expected_incident_list_columns.json +28 -1
- browsergym/workarena/data_files/setup_files/lists/expected_service_catalog_list_columns.json +29 -1
- browsergym/workarena/data_files/task_configs/sort_asset_list_task.json +547 -11391
- browsergym/workarena/data_files/task_configs/sort_change_request_list_task.json +558 -11090
- browsergym/workarena/data_files/task_configs/sort_hardware_list_task.json +576 -11162
- browsergym/workarena/data_files/task_configs/sort_incident_list_task.json +528 -11172
- browsergym/workarena/data_files/task_configs/sort_service_catalog_item_list_task.json +533 -11491
- browsergym/workarena/data_files/task_configs/sort_user_list_task.json +568 -10582
- browsergym/workarena/install.py +22 -15
- browsergym/workarena/tasks/form.py +8 -7
- browsergym/workarena/tasks/list.py +39 -1
- browsergym/workarena/tasks/scripts/list.py +31 -7
- {browsergym_workarena-0.1.0rc6.dist-info → browsergym_workarena-0.1.0rc7.dist-info}/METADATA +2 -2
- {browsergym_workarena-0.1.0rc6.dist-info → browsergym_workarena-0.1.0rc7.dist-info}/RECORD +21 -21
- {browsergym_workarena-0.1.0rc6.dist-info → browsergym_workarena-0.1.0rc7.dist-info}/WHEEL +1 -1
- {browsergym_workarena-0.1.0rc6.dist-info → browsergym_workarena-0.1.0rc7.dist-info}/entry_points.txt +0 -0
- {browsergym_workarena-0.1.0rc6.dist-info → browsergym_workarena-0.1.0rc7.dist-info}/licenses/LICENSE +0 -0
browsergym/workarena/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.0rc7"
|
|
2
2
|
|
|
3
3
|
from browsergym.core.registration import register_task
|
|
4
4
|
|
|
@@ -18,4 +18,8 @@ ALL_WORKARENA_TASKS = [
|
|
|
18
18
|
|
|
19
19
|
# register the WorkArena benchmark
|
|
20
20
|
for task in ALL_WORKARENA_TASKS:
|
|
21
|
-
register_task(
|
|
21
|
+
register_task(
|
|
22
|
+
task.get_task_id(),
|
|
23
|
+
task,
|
|
24
|
+
kwargs={"viewport": {"width": 1280, "height": 720}, "timeout": 10000},
|
|
25
|
+
)
|
|
@@ -1 +1,34 @@
|
|
|
1
|
-
[
|
|
1
|
+
[
|
|
2
|
+
"model.display_name",
|
|
3
|
+
"model_category",
|
|
4
|
+
"asset_tag",
|
|
5
|
+
"substatus",
|
|
6
|
+
"asset_function",
|
|
7
|
+
"install_status",
|
|
8
|
+
"sys_class_name",
|
|
9
|
+
"assigned_to",
|
|
10
|
+
"serial_number",
|
|
11
|
+
"location",
|
|
12
|
+
"vendor",
|
|
13
|
+
"assigned",
|
|
14
|
+
"company",
|
|
15
|
+
"cost",
|
|
16
|
+
"department",
|
|
17
|
+
"display_name",
|
|
18
|
+
"model",
|
|
19
|
+
"sys_updated_by",
|
|
20
|
+
"sys_updated_on",
|
|
21
|
+
"sys_mod_count",
|
|
22
|
+
"retirement_date",
|
|
23
|
+
"retired",
|
|
24
|
+
"residual",
|
|
25
|
+
"quantity",
|
|
26
|
+
"purchase_date",
|
|
27
|
+
"po_number",
|
|
28
|
+
"order_date",
|
|
29
|
+
"delivery_date",
|
|
30
|
+
"managed_by",
|
|
31
|
+
"invoice_number",
|
|
32
|
+
"cost_center",
|
|
33
|
+
"warranty_expiration"
|
|
34
|
+
]
|
|
@@ -1 +1,48 @@
|
|
|
1
|
-
[
|
|
1
|
+
[
|
|
2
|
+
"number",
|
|
3
|
+
"short_description",
|
|
4
|
+
"chg_model",
|
|
5
|
+
"type",
|
|
6
|
+
"state",
|
|
7
|
+
"risk",
|
|
8
|
+
"start_date",
|
|
9
|
+
"end_date",
|
|
10
|
+
"requested_by",
|
|
11
|
+
"assignment_group",
|
|
12
|
+
"assigned_to",
|
|
13
|
+
"sys_created_on",
|
|
14
|
+
"active",
|
|
15
|
+
"work_end",
|
|
16
|
+
"work_start",
|
|
17
|
+
"approval",
|
|
18
|
+
"approval_history",
|
|
19
|
+
"approval_set",
|
|
20
|
+
"backout_plan",
|
|
21
|
+
"category",
|
|
22
|
+
"change_plan",
|
|
23
|
+
"close_code",
|
|
24
|
+
"close_notes",
|
|
25
|
+
"closed_at",
|
|
26
|
+
"closed_by",
|
|
27
|
+
"cmdb_ci",
|
|
28
|
+
"conflict_last_run",
|
|
29
|
+
"conflict_status",
|
|
30
|
+
"contact_type",
|
|
31
|
+
"sys_created_by",
|
|
32
|
+
"delivery_plan",
|
|
33
|
+
"delivery_task",
|
|
34
|
+
"description",
|
|
35
|
+
"task_effective_number",
|
|
36
|
+
"escalation",
|
|
37
|
+
"impact",
|
|
38
|
+
"implementation_plan",
|
|
39
|
+
"justification",
|
|
40
|
+
"knowledge",
|
|
41
|
+
"made_sla",
|
|
42
|
+
"opened_at",
|
|
43
|
+
"opened_by",
|
|
44
|
+
"phase",
|
|
45
|
+
"phase_state",
|
|
46
|
+
"priority",
|
|
47
|
+
"reassignment_count"
|
|
48
|
+
]
|
|
@@ -1 +1,53 @@
|
|
|
1
|
-
[
|
|
1
|
+
[
|
|
2
|
+
"display_name",
|
|
3
|
+
"model_category",
|
|
4
|
+
"asset_tag",
|
|
5
|
+
"serial_number",
|
|
6
|
+
"assigned_to",
|
|
7
|
+
"company",
|
|
8
|
+
"install_status",
|
|
9
|
+
"substatus",
|
|
10
|
+
"cost",
|
|
11
|
+
"ci",
|
|
12
|
+
"asset_function",
|
|
13
|
+
"acquisition_method",
|
|
14
|
+
"active_to",
|
|
15
|
+
"assigned",
|
|
16
|
+
"beneficiary",
|
|
17
|
+
"checked_in",
|
|
18
|
+
"checked_out",
|
|
19
|
+
"sys_class_name",
|
|
20
|
+
"comments",
|
|
21
|
+
"cost_center",
|
|
22
|
+
"sys_created_on",
|
|
23
|
+
"sys_created_by",
|
|
24
|
+
"department",
|
|
25
|
+
"due",
|
|
26
|
+
"due_in",
|
|
27
|
+
"eligible_for_refresh",
|
|
28
|
+
"expenditure_type",
|
|
29
|
+
"install_date",
|
|
30
|
+
"invoice_number",
|
|
31
|
+
"justification",
|
|
32
|
+
"lease_id",
|
|
33
|
+
"location",
|
|
34
|
+
"managed_by",
|
|
35
|
+
"model",
|
|
36
|
+
"delivery_date",
|
|
37
|
+
"order_date",
|
|
38
|
+
"owned_by",
|
|
39
|
+
"po_number",
|
|
40
|
+
"purchase_date",
|
|
41
|
+
"quantity",
|
|
42
|
+
"request_line",
|
|
43
|
+
"retirement_date",
|
|
44
|
+
"skip_sync",
|
|
45
|
+
"stockroom",
|
|
46
|
+
"support_group",
|
|
47
|
+
"supported_by",
|
|
48
|
+
"sys_updated_on",
|
|
49
|
+
"sys_updated_by",
|
|
50
|
+
"sys_mod_count",
|
|
51
|
+
"vendor",
|
|
52
|
+
"warranty_expiration"
|
|
53
|
+
]
|
|
@@ -1 +1,28 @@
|
|
|
1
|
-
[
|
|
1
|
+
[
|
|
2
|
+
"number",
|
|
3
|
+
"caller_id",
|
|
4
|
+
"category",
|
|
5
|
+
"cmdb_ci",
|
|
6
|
+
"priority",
|
|
7
|
+
"state",
|
|
8
|
+
"short_description",
|
|
9
|
+
"assignment_group",
|
|
10
|
+
"assigned_to",
|
|
11
|
+
"child_incidents",
|
|
12
|
+
"active",
|
|
13
|
+
"activity_due",
|
|
14
|
+
"business_duration",
|
|
15
|
+
"business_stc",
|
|
16
|
+
"closed_at",
|
|
17
|
+
"closed_by",
|
|
18
|
+
"company",
|
|
19
|
+
"sys_created_on",
|
|
20
|
+
"sys_created_on",
|
|
21
|
+
"description",
|
|
22
|
+
"calendar_duration",
|
|
23
|
+
"task_effective_number",
|
|
24
|
+
"escalation",
|
|
25
|
+
"impact",
|
|
26
|
+
"incident_state",
|
|
27
|
+
"location"
|
|
28
|
+
]
|
browsergym/workarena/data_files/setup_files/lists/expected_service_catalog_list_columns.json
CHANGED
|
@@ -1 +1,29 @@
|
|
|
1
|
-
[
|
|
1
|
+
[
|
|
2
|
+
"name",
|
|
3
|
+
"short_description",
|
|
4
|
+
"active",
|
|
5
|
+
"roles",
|
|
6
|
+
"sc_catalogs",
|
|
7
|
+
"category",
|
|
8
|
+
"price",
|
|
9
|
+
"type",
|
|
10
|
+
"sys_updated_on",
|
|
11
|
+
"access_type",
|
|
12
|
+
"sys_scope",
|
|
13
|
+
"availability",
|
|
14
|
+
"sys_class_name",
|
|
15
|
+
"mobile_picture_type",
|
|
16
|
+
"sys_created_on",
|
|
17
|
+
"sys_created_by",
|
|
18
|
+
"delivery_time",
|
|
19
|
+
"sys_name",
|
|
20
|
+
"description",
|
|
21
|
+
"delivery_plan",
|
|
22
|
+
"fulfillment_automation_level",
|
|
23
|
+
"flow_designer_flow",
|
|
24
|
+
"no_cart_v2",
|
|
25
|
+
"no_wishlist_v2",
|
|
26
|
+
"no_attachment_v2",
|
|
27
|
+
"hide_sp",
|
|
28
|
+
"no_quantity_v2"
|
|
29
|
+
]
|