Browser information

How can I get the browser information in vaadin 14? tks

Hi Fabio, try this:

WebBrowser browser = VaadinSession.getCurrent().getBrowser();

VaadinSession.getCurrent().getBrowser() gives you some information. Other things you have to fetch through the callback

UI.getCurrent().getPage().retrieveExtendedClientDetails(details -> {
            
});