2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
Posted on February 7, 2023
DotNetBrowser 2.20.1
What’s new
Chromium
We’ve bumped Chromium to version 108.0.5359.215.
Clearing HTTP authentication cache
The API has been extended with functionality that allows you to clear HTTP authentication cache:
profile.HttpAuthCache.Clear();
Forwarding mouse modifiers
With these changes, it is possible to forward mouse modifiers along with the mouse input events to indicate which mouse buttons are in the pressed state during these events. For instance, we can simulate the mouse moved event with the left mouse button pressed:
MouseMovedEventArgs moveEvent = new MouseMovedEventArgs
{
Location = location,
MouseModifiers = new MouseModifiers
{
PrimaryButtonDown = true
};
};
browser.Mouse.Moved.Raise(moveEvent);
Quality enhancements
- Fixed issue when point inspection returned DOM node objects bound to an incorrect frame.
Download DotNetBrowser 2.20.1 (.NET Framework)
Download DotNetBrowser 2.20.1 (.NET Core)
Download DotNetBrowser 2.20.1 (Cross-platform)
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.