我正在尝试测试使用EXTJS开发UI的Web应用程序。我面临的问题是,当我尝试录制宏并自动化测试时,我遇到了一个主要问题。
ExtJs ID是动态的(当我第一次录制宏时,Id是extj-343,下次当我尝试播放录制的宏时,Id不会保持相同)
所以我得到一个运行时异常,宏没有完成执行。
已尝试解决方案:
我尝试使用iMacro作为Selenium的替代测试工具并遇到同样的问题。
据我所知,应该有一些方法可以使这个Ids静止,以便解决问题或者应该有一些可用的工作。
答案 0 :(得分:0)
我们使用Ext(ver 2.2.1)的以下覆盖来使id成为我们指定的内容而不是Ext生成的内容。不知道我们在哪里找到它,可能是Ext论坛。
Ext.override(Ext.Button, {
initButtonEl : function(btn, btnEl){
this.el = btn;
btn.addClass("x-btn");
if(this.id){
//this.el.dom.id = this.el.id = this.id;
// override
btnEl.dom.id = btnEl.id = this.id;
// end override
}
if(this.icon){
btnEl.setStyle('background-image', 'url(' +this.icon +')');
}
if(this.iconCls){
btnEl.addClass(this.iconCls);
if(!this.cls){
btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
}
}
if(this.tabIndex !== undefined){
btnEl.dom.tabIndex = this.tabIndex;
}
if(this.tooltip){
if(typeof this.tooltip == 'object'){
Ext.QuickTips.register(Ext.apply({
target: btnEl.id
}, this.tooltip));
} else {
btnEl.dom[this.tooltipType] = this.tooltip;
}
}
if(this.pressed){
this.el.addClass("x-btn-pressed");
}
if(this.handleMouseEvents){
btn.on("mouseover", this.onMouseOver, this);
// new functionality for monitoring on the document level
//btn.on("mouseout", this.onMouseOut, this);
btn.on("mousedown", this.onMouseDown, this);
}
if(this.menu){
this.menu.on("show", this.onMenuShow, this);
this.menu.on("hide", this.onMenuHide, this);
}
if(this.repeat){
var repeater = new Ext.util.ClickRepeater(btn,
typeof this.repeat == "object" ? this.repeat : {}
);
repeater.on("click", this.onClick, this);
}
btn.on(this.clickEvent, this.onClick, this);
}
});
Ext.override(Ext.menu.Item, {
onRender : function(container, position){
var el = document.createElement("a");
el.hideFocus = true;
el.unselectable = "on";
el.href = this.href || "#";
if(this.hrefTarget){
el.target = this.hrefTarget;
}
el.className = this.itemCls + (this.menu ? " x-menu-item-arrow" : "") + (this.cls ? " " + this.cls : "");
// override
if (this.id){
el.id = this.id;
}
// end override
el.innerHTML = String.format(
'<img src="{0}" class="x-menu-item-icon {2}" />{1}',
this.icon || Ext.BLANK_IMAGE_URL, this.itemText||this.text, this.iconCls || '');
this.el = el;
Ext.menu.Item.superclass.onRender.call(this, container, position);
}
});
答案 1 :(得分:0)
如果我正确理解您的问题,您只需要在iMacros脚本中用*****替换更改的URL部分。我不确定Selenium是否也能采用相同的方法。