Index: trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js
===================================================================
--- trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js	(revision 936)
+++ trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js	(revision 937)
@@ -193,4 +193,13 @@
     if (node.nodeType === Node.ELEMENT_NODE) {
         nodePath += node.tagName.toLowerCase();
+        
+        if ("input" === node.tagName.toLowerCase()) {
+            if (node.type && (node.type !== "")) {
+                nodePath += "_" + node.type;
+            }
+            else {
+                nodePath += "_text";
+            }
+        }
     }
     else {
