-
Notifications
You must be signed in to change notification settings - Fork 5.1k
chore: perform testing framework #38785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pavelfeldman
merged 1 commit into
microsoft:main
from
pavelfeldman:test_framework_perform
Jan 15, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
tests/library/__llm_cache__/library-agent-perform-click-a-button.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| { | ||
| "0706eb777330056e04cc3abb4715ed3fa1c9d4d5": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll click the Submit button for you." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_click", | ||
| "arguments": { | ||
| "element": "Submit button", | ||
| "ref": "e2", | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_01W54FxjcWYV856RHP3V2xdj" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2893, | ||
| "output": 101 | ||
| } | ||
| } | ||
| } | ||
51 changes: 51 additions & 0 deletions
51
tests/library/__llm_cache__/library-agent-perform-expect-value.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| { | ||
| "77c0828e4bffb298a3850504550ffcac23e6692e": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll help you complete this task. Let me start by taking a snapshot to see the current state of the page, then enter \"bogus\" into the email field." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_type", | ||
| "arguments": { | ||
| "element": "textbox \"Email Address\"", | ||
| "ref": "e2", | ||
| "text": "bogus", | ||
| "_is_done": false | ||
| }, | ||
| "id": "toolu_01FfLGgBK1CHZ8e54gQMukA6" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2926, | ||
| "output": 149 | ||
| } | ||
| }, | ||
| "ca3ff77a849d4eacf88d299dc8727d63724a68aa": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "Perfect! I have successfully completed all three parts of the task:\n\n1. ✅ **Entered \"bogus\" into the email field** - The text has been typed into the textbox\n2. ✅ **Verified the value is \"bogus\"** - The page snapshot shows the textbox contains \"bogus\"\n3. ✅ **Confirmed error message is displayed** - The error message \"Error: Invalid email address\" is now visible on the page\n\nThe task is complete." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_snapshot", | ||
| "arguments": { | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_018wjD4H2S5QHQ3rpE2sR7bM" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 3138, | ||
| "output": 167 | ||
| } | ||
| } | ||
| } |
35 changes: 35 additions & 0 deletions
35
tests/library/__llm_cache__/library-agent-perform-extract-task.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| { | ||
| "b5f1ee58f1051afb059b3b33e8be41576a1324a4": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll extract the todo items and their statuses from the page snapshot." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "report_result", | ||
| "arguments": { | ||
| "items": [ | ||
| { | ||
| "title": "Buy groceries", | ||
| "completed": true | ||
| }, | ||
| { | ||
| "title": "Buy milk", | ||
| "completed": false | ||
| } | ||
| ], | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_01WvevmDTBxmKg79Ji6vQvpH" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 888, | ||
| "output": 133 | ||
| } | ||
| } | ||
| } |
52 changes: 52 additions & 0 deletions
52
tests/library/__llm_cache__/library-agent-perform-perform-history.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| { | ||
| "4f9987bc22c6035501274532494c185d1270aba2": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll click the Fox button again as requested." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_click", | ||
| "arguments": { | ||
| "element": "Fox button", | ||
| "ref": "e3", | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_013sypFp7tiRCLaR3i3oWrei" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2946, | ||
| "output": 102 | ||
| } | ||
| }, | ||
| "79e2d58996075c4ebe8eb9e557bd0cdb8b04211a": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll click the Fox button for you." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_click", | ||
| "arguments": { | ||
| "element": "Fox button", | ||
| "ref": "e3", | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_01E6xBUYzQEdRrkWoobbUbFq" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2933, | ||
| "output": 101 | ||
| } | ||
| } | ||
| } |
27 changes: 27 additions & 0 deletions
27
tests/library/__llm_cache__/library-agent-perform-perform-run-timeout.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| { | ||
| "c2f54e956e3131255f03c5484a637b580f7d695f": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll click the Fox button for you." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_click", | ||
| "arguments": { | ||
| "element": "Fox button", | ||
| "ref": "e3", | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_01GipHDfLSETD8VyJt6D6ng5" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2919, | ||
| "output": 101 | ||
| } | ||
| } | ||
| } |
28 changes: 28 additions & 0 deletions
28
tests/library/__llm_cache__/library-agent-perform-retrieve-a-secret.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| { | ||
| "c1d41afc231b64caf136132dd841ca8f45876674": { | ||
| "result": { | ||
| "role": "assistant", | ||
| "content": [ | ||
| { | ||
| "type": "text", | ||
| "text": "I'll enter the x-secret-email value into the email field." | ||
| }, | ||
| { | ||
| "type": "tool_call", | ||
| "name": "browser_type", | ||
| "arguments": { | ||
| "element": "Email Address textbox", | ||
| "ref": "e2", | ||
| "text": "%x-secret-email%", | ||
| "_is_done": true | ||
| }, | ||
| "id": "toolu_018PD6jsENphY4ERa1XRF4ZN" | ||
| } | ||
| ] | ||
| }, | ||
| "usage": { | ||
| "input": 2901, | ||
| "output": 132 | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is the key some hash rather than prompt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because this is a full conversation rather than a prompt