Skip to content

Commit 1f461be

Browse files
change target site (#467)
* change target site * numpy * prettier
1 parent 5901075 commit 1f461be

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

evals/tasks/observe_github.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ export const observe_github: EvalFunction = async ({ modelName, logger }) => {
99

1010
const { debugUrl, sessionUrl } = initResponse;
1111

12-
await stagehand.page.goto(
13-
"https://github.com/browserbase/stagehand/tree/main/lib",
14-
);
12+
await stagehand.page.goto("https://github.com/numpy/numpy/tree/main/numpy");
1513

1614
const observations = await stagehand.page.observe({
17-
instruction: "find the scrollable element that holds the repos file tree",
15+
instruction: "find the scrollable element that holds the repos file tree.",
1816
});
1917

2018
if (observations.length === 0) {
@@ -31,6 +29,7 @@ export const observe_github: EvalFunction = async ({ modelName, logger }) => {
3129
const possibleLocators = [
3230
`#repos-file-tree > div.Box-sc-g0xbh4-0.jbQqON > div > div > div > nav > ul`,
3331
`#repos-file-tree > div.Box-sc-g0xbh4-0.jbQqON > div > div > div > nav`,
32+
`#repos-file-tree > div.Box-sc-g0xbh4-0.jbQqON`,
3433
];
3534

3635
const possibleHandles = [];

0 commit comments

Comments
 (0)