Posted on April 29, 2022

DotNetBrowser 2.14

What’s new

Chromium

Chromium has been upgraded to version 100.0.4896.127.

This Chromium version includes 2 important security fixes.

Caret browsing

Now you can use the text cursor to navigate web pages, select text, and click links with your keyboard instead of your mouse:

Browser.Profile.Preferences.CaretBrowsingEnabled = true;

Webform autofill

User data profile

Autofill web forms with user data profile that includes address, city, phone, first name, etc.

Address

To access and manage the saved user data profile, use IUserDataProfileStore:

IReadOnlyList<UserDataProfile> allUserDataProfiles = 
    Engine.Profiles.Default.UserDataProfileStore.All;

Credit cards

Remember the credit card, autofill its details, manage the saved information using the brand new API:

IReadOnlyList<CreditCard> allCreditCards = Engine.Profiles.Default.CreditCardStore.All;

Card

Fixes and enhancements:

  • Widevine CDM initialized with a significant delay.
  • The in-process DevTools window was not draggable in Windows 7 environment.

Request evaluation license
Download DotNetBrowser 2.14 (.NET Framework)
Download DotNetBrowser 2.14 (.NET Core)

Go Top