BrowserFrame - is it possible to include a live search result URL

Hello, is it possible to display a live google search result HTML page in the Vaadin Grid?

for example

https://www.google.com/webhp?sourceid=chrome-instant&rlz=1C1NHXL_enUS738US738&ion=1&espv=2&ie=UTF-8#q=include+live+html+page+in+grid+cell&* Can this be displayed within the Vaadin Grid?
or
Within a Vaadin web app ?

Hi,

It is possible to show any web page using a browser frame: https://vaadin.com/docs/-/part/framework/components/components-embedded.html.

However, if you like to show, e.g. Google search results in Grid you need to fetch the search result on the Java side yourself, parse the result, and then write some code that puts the returned result into the grid. Google also provides a api for some searches: https://developers.google.com/custom-search/json-api/v1/overview that could make it easier.

-Pontus

Thank you @Pontus