.getProperty("style")
輸出TestObject(Ref:RemoteProxyReference{testContext:af4e390002a336, objectId:3171, testObjectClass:TestObject})
如何獲取價值.getProperty(「風格」)的
而to[0].getProperties()
輸出,其中關鍵的文字散‘風格’,提出{... , style=DISPLAY: none, oncontrolselect=null Object, rowSpan=1, .....}
我怎樣才能獲得屬性的值與主要的風格?
這裏是我的代碼示例...
TestObject[] to=null;
RegularExpression findRegExp1 = new RegularExpression(find_arguments[1], false) ;
RootTestObject root = getRootTestObject();
to = root.find(atDescendant(find_arguments[0],findRegExp1),false);
System.out.println(to[0].getProperty("style"));
System.out.println(to[0].getProperties());
這兩種方法都是標準的RFT方法。在IBM Rational Functional Tester API Reference
從代碼示例中可以看出'getProperty()'是一個自定義方法, root.find(...)'。沒有_at least_'getProperty()'的代碼,沒有人能夠幫助你。 –
@Jim:更新了我的問題。這兩種方法都是標準的RFT方法。在調試時,我無法看到getProperty(「style」)的值。 – Radek