@@ -19,8 +19,7 @@ def sample_browser_state():
19
19
return BrowserState (
20
20
url = 'https://example.com' ,
21
21
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 )],
24
23
screenshot = 'screenshot1.png' ,
25
24
items = [
26
25
DomContentItem (index = 1 , text = 'Click me' , is_text_only = False , depth = 0 ),
@@ -78,8 +77,7 @@ def sample_history(action_registry):
78
77
state = BrowserState (
79
78
url = 'https://example.com' ,
80
79
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 )],
83
81
screenshot = 'screenshot1.png' ,
84
82
items = [DomContentItem (index = 1 , text = 'Button' , is_text_only = False , depth = 0 )],
85
83
selector_map = {1 : '//button[1]' },
@@ -102,8 +100,7 @@ def sample_history(action_registry):
102
100
state = BrowserState (
103
101
url = 'https://example.com/page2' ,
104
102
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 )],
107
104
screenshot = 'screenshot2.png' ,
108
105
items = [DomContentItem (index = 2 , text = 'Content' , is_text_only = True , depth = 0 )],
109
106
selector_map = {2 : '//div[1]' },
@@ -122,8 +119,7 @@ def sample_history(action_registry):
122
119
state = BrowserState (
123
120
url = 'https://example.com/page2' ,
124
121
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 )],
127
123
screenshot = 'screenshot3.png' ,
128
124
items = [DomContentItem (index = 3 , text = 'Final' , is_text_only = True , depth = 0 )],
129
125
selector_map = {3 : '//div[2]' },
0 commit comments