Hi,
I'm starting to prepare some tests but i'm running into an issue where i can't use scLocator for a button in a form. Other element types works perfectly.
I'm running SC v8.2. Here is a simplified version of the form:
	When i click at this button with recording turned on in SeleniumRC it displays the following error:
	And them keep showing more 3 or 4 errors which are almost the same.
If i change "type" to "text" and right click on it, for example, it finds the scLocator normally:
	Is this a bug or am i doing something wrong?
							
						
					I'm starting to prepare some tests but i'm running into an issue where i can't use scLocator for a button in a form. Other element types works perfectly.
I'm running SC v8.2. Here is a simplified version of the form:
Code:
	
	<script>
      isc.DynamicForm.create({
          ID: "dateForm",
          fields: [
             {name: "submitButton", title: "Send", type: "button"}
          ]
      });
  </script>
Code:
	
	caught error TypeError: this.getCanvasLocatorFallbackPath is not a function for element [object HTMLTableCellElement] with id
If i change "type" to "text" and right click on it, for example, it finds the scLocator normally:
Code:
	
	scLocator=//DynamicForm[ID="dateForm"]/item[name=submitButton||title=Send||index=0||Class=TextItem]/element
Comment