Within my Web Browser view I need to get the the "Examiner" value from the html The html line looks like this : <input name="Examiner" type="hidden" value="Joe Doe"> I've been trying to get it using the below code and other combinations but its not really working. What is the correct way to get the value of "Examiner" using HTMLDoc or something else? browser.addProgressListener(new ProgressListener() { public void completed(com.ibm.rcp.browser.service.ProgressEvent event) { HTMLDocument htmldoc = browser.getDocument(); System.out.println("My HTML doc" +htmldoc.getElementsByName("Examiner").item(0).getAttributes().getNamedItem("value").getNodeValue()); public void changed(com.ibm.rcp.browser.service.ProgressEvent event) { // TODO Auto-generated method stub } });