We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ecfa50 commit af925e9Copy full SHA for af925e9
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
### Fixed
11
12
+ - Fix typo in `Browser._handle_target_update` that prevented target_info updates @puc9
13
- Fix [#128](https://github.com/cdpdriver/zendriver/issues/218): TimeoutError caused by Tab.xpath @ionutcatana
14
15
### Added
zendriver/core/browser.py
@@ -224,7 +224,7 @@ async def _handle_target_update(
224
% (self.targets.index(current_tab), changes_string)
225
)
226
227
- current_tab.target = target_info
+ current_tab.target = target_info
228
229
elif isinstance(event, cdp.target.TargetCreated):
230
target_info = event.target_info
0 commit comments