Skip to content

Commit 0e2237a

Browse files
committed
Remove tab_handle from browser state tests
1 parent ef6311b commit 0e2237a

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"justMyCode": false
7373
},
7474
{
75-
"name": "Python: Debug Current File",
75+
"name": "pytest: Debug Current File",
7676
"type": "python",
7777
"request": "launch",
7878
"module": "pytest",

browser_use/agent/tests.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ def sample_browser_state():
1919
return BrowserState(
2020
url='https://example.com',
2121
title='Example Page',
22-
current_tab_handle='tab1',
23-
tabs=[TabInfo(handle='tab1', url='https://example.com', title='Example Page')],
22+
tabs=[TabInfo(url='https://example.com', title='Example Page', page_id=1)],
2423
screenshot='screenshot1.png',
2524
items=[
2625
DomContentItem(index=1, text='Click me', is_text_only=False, depth=0),
@@ -78,8 +77,7 @@ def sample_history(action_registry):
7877
state=BrowserState(
7978
url='https://example.com',
8079
title='Page 1',
81-
current_tab_handle='tab1',
82-
tabs=[TabInfo(handle='tab1', url='https://example.com', title='Page 1')],
80+
tabs=[TabInfo(url='https://example.com', title='Page 1', page_id=1)],
8381
screenshot='screenshot1.png',
8482
items=[DomContentItem(index=1, text='Button', is_text_only=False, depth=0)],
8583
selector_map={1: '//button[1]'},
@@ -102,8 +100,7 @@ def sample_history(action_registry):
102100
state=BrowserState(
103101
url='https://example.com/page2',
104102
title='Page 2',
105-
current_tab_handle='tab1',
106-
tabs=[TabInfo(handle='tab1', url='https://example.com/page2', title='Page 2')],
103+
tabs=[TabInfo(url='https://example.com/page2', title='Page 2', page_id=2)],
107104
screenshot='screenshot2.png',
108105
items=[DomContentItem(index=2, text='Content', is_text_only=True, depth=0)],
109106
selector_map={2: '//div[1]'},
@@ -122,8 +119,7 @@ def sample_history(action_registry):
122119
state=BrowserState(
123120
url='https://example.com/page2',
124121
title='Page 2',
125-
current_tab_handle='tab1',
126-
tabs=[TabInfo(handle='tab1', url='https://example.com/page2', title='Page 2')],
122+
tabs=[TabInfo(url='https://example.com/page2', title='Page 2', page_id=2)],
127123
screenshot='screenshot3.png',
128124
items=[DomContentItem(index=3, text='Final', is_text_only=True, depth=0)],
129125
selector_map={3: '//div[2]'},

0 commit comments

Comments
 (0)