|
下了一个RFT8.0来试用, 试着录制了一个 基于Java-JIDE的 GUI的操作。
貌似可以支持该GUI的测试:
public void testMain(Object[] args)
{
sortableTable().click(atCell(atRow("User Label", "62C21"),
atColumn("User Label")),
atPoint(84,5));
sortableTable().click(atCell(atRow("User Label", "62C21"),
atColumn("User Label")),
atPoint(84,5));
sortableTable().doubleClick(RIGHT, atCell(
atRow(
"User Label", "62C21"),
atColumn("User Label")),
atPoint(84,5));
msDinamicPopUp().click(atPath("Actions-> Show it"));
//
yes().click();
}
}
但是在这里请教高手,
如何查找表中是否有含属性为特定值的行呢?
如何取得特定行的属性值呢?
是否直接使用 sortableTable()的函数?
先行谢过。 |
|