dreamweaver.findNext() does not highlight/select matches in CC 2019
According to the description of dreamweaver.findNext() in https://helpx.adobe.com/dreamweaver/apiref/find-replace-functions.html#dreamweaver_setupfind, the matched result should be selected.
Finds the next instance of the search string that was specified previously by dreamweaver.setUpFind(), by dreamweaver.setUpComplexFind(), or by the user in the Find dialog box, and selects the instance in the document.
Currently, after the calling of following code, matched result is not selected/highlighted.
dreamweaver.setUpFind({searchString: "AAA", searchWhat: "document", matchCase: false, matchWholeWord: false, useRegularExpressions: false, searchSource: true});
dreamweaver.findNext();
