Search found 24 matches

Thanks for reply.
Hope having the group in the JSON report soon.
If this feature is released, please let me know.
I'd like to implement a report like https://docs.sencha.com/extjs/4.1.1/extj ... -grid.html
It seems that there are only two report format in webdriver or phantomjs such as Junit and JSON. Could I have HTML output? I am considering implementing a converter to convert JSON to HTML. But I have a question about the format. I have 3 test cases in 2 groups. Harness.start({ group : 'project', it...
Which tool do you use to convert report from junit xml to html?
2014-04-22_17-11-14.jpg The error happened again. But this time it's not the network issue since I test it at home and the test page is at localhost. There's a simple grid within viewport: Ext.define('MyApp.ProjectGrid', { extend : 'Ext.grid.Panel', alias : 'widget.projectGrid', store : Ext.create(...
I am evaluating Siesta recently. My ExtJS web is real simple: A grid within a viewport. I spent lots of time wanting to know why my test script doesn't work in phantomjs but work in browser. (Please refer to my attachment for the test results.) When running test script, phantomjs always complains: T...
I found another way to override a method,
Class('Test.ExtendingTestClass', {
	isa : Siesta.Test.ExtJS,
 	override : {
 
		waitForStoresToLoad : function() {
 			// ...
		}	 
	},
});
Is there difference between these two ways?
In extjs, it's easy to override a method: Ext.define('Ext.enhence.panel.Panel', { override : 'Ext.panel.Panel', setDisabled : function(disabled) { // override method } }); I wonder if there's a way to override a method in Siesta? For example, I'd like to override the behavior in waitForStoresToLoad(...
Thanks for reply!
Thanks for reply!
I have two test scripts. 001_user.t.js: login as normal user and start testing 002_admin.t.js: login as admin and start testing Since the web UI depends on the role of user, running 002_admin.t.js for a "normal user" session must be failed. In this case, when running test scripts parallell...