Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Full text search in Electron BrowserWindow

Does the Electron application framework have built-in text search?

The quick-start application doesn't provide any apparent search functionality (e.g. using Ctrl-F or from the menu options). I would have expected this to be a BrowserWindow option (or an option of its WebContents), but I don't see anything helpful in the docs.

like image 767
Tony S Yu Avatar asked Nov 20 '15 23:11

Tony S Yu


1 Answers

Try webContents.findInPage just added in the latest version.

like image 146
paulot Avatar answered Oct 05 '22 22:10

paulot