Set zk component id prefix for selenium test support.
This commit is contained in:
parent
02c41740fa
commit
23bd9decf2
|
@ -16,6 +16,7 @@ package org.adempiere.webui.component;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.adempiere.webui.AdempiereIdGenerator;
|
||||||
import org.adempiere.webui.component.ADTabListModel.ADTabLabel;
|
import org.adempiere.webui.component.ADTabListModel.ADTabLabel;
|
||||||
import org.zkoss.zhtml.Button;
|
import org.zkoss.zhtml.Button;
|
||||||
import org.zkoss.zhtml.Text;
|
import org.zkoss.zhtml.Text;
|
||||||
|
@ -73,6 +74,7 @@ public class ADButtonTabList extends Panel implements IADTabList, EventListener
|
||||||
ADTabLabel tabLabel = (ADTabLabel) items[i];
|
ADTabLabel tabLabel = (ADTabLabel) items[i];
|
||||||
Button button = new Button();
|
Button button = new Button();
|
||||||
button.setDynamicProperty("Title", tabLabel.description);
|
button.setDynamicProperty("Title", tabLabel.description);
|
||||||
|
button.setAttribute(AdempiereIdGenerator.ZK_COMPONENT_PREFIX_ATTRIBUTE, "ADButtonTab" + i);
|
||||||
Text text = new Text(tabLabel.label);
|
Text text = new Text(tabLabel.label);
|
||||||
button.appendChild(text);
|
button.appendChild(text);
|
||||||
int s = tabbox.getSelectedIndex();
|
int s = tabbox.getSelectedIndex();
|
||||||
|
|
Loading…
Reference in New Issue