我有一个数据表表单,包括几个项目,如textfield
、datefield
和combobox
。我将如何使用Siessta进行选择项目以进行combobox
,我需要将Siessta等待时间设置为30000毫秒以上,因为数据正在通过ajax
请求加载到combobox
。
我使用过的一个片段失败了;
t.it('Should create a new registration', function (t) {
t.chain(
{click: '>> button[text=New]'},
{waitForCQ: 'regdata[title=New Registration]'},
{click: '>> firstnamefld[xtype=firstnamefld]'},
{type: 'Siesta Reg', target: '>> firstnamefld[xtype=firstnamefld]'},
{click: '>> lastnamefld[xtype=lastnamefld]'},
{type: 'Test One', target: '>> lastnamefld[xtype=lastnamefld]'},
{click: '>> datefld[xtype=datefld]'},
{type: '11.10.2017', target: '>> checkinfld[xtype=checkinfld]'}, //Probably that's not correct way to choose date on datefield but it works
//Here is making ajax request to load data in combo.but Siesta isn't waiting for selection.
//I shouldn't use 'type' for this part but I couldn't find any proper property.
{click: '>> groupcombo[xtype=groupcombo]'},
{type: 'Group One', target: '>> groupcombo[xtype=groupcombo]'}
最好将此类问题发布到Siesta支持论坛(由Bryntum开发人员积极监控)。关于Stackoverflow的问题也是受欢迎的,但可能会在一段时间内被忽视。
要设置Siesta中所有"waitFor"方法/操作的最长等待时间,您可以使用waitForTimeout配置选项。
要在单击"groupcombo"后等待Ajax请求完成,您可以执行以下操作:
{click: '>> groupcombo[xtype=groupcombo]'},
{
waitFor : function () {
if (someConditionThatIsTrueOnceAjaxRequestHasCompleted) return true
}
},
{type: 'Group One', target: '>> groupcombo[xtype=groupcombo]'}
但请注意,此代码中存在潜在的争用条件(在此处描述)
另外,请注意,很多时候,在设置某些字段的值时,您实际上是在验证一些其他核心业务逻辑,这些逻辑将这些字段联系在一起。因此,没有严格需要执行实际的键入/单击,您可以直接设置字段的值:
t.chain(
function (next) {
t.cq1('compqueryselector1').setValue('someValue1')
t.cq1('compqueryselector2').setValue('someValue2')
next()
},
function (next) {
t.pass(businessLogicIsCorrect(), "Business logic rules works")
next()
}
)
这通常会简化测试并且速度更快。