Can get a property value from the clipboard by using the Java step?

Can get a property value from the clipboard by using the Java step?

Hi @pundarit,

use the below java code it will resolve your issue.

ClipboardPageworkpage = tools.findPage(pagename);
String propername = workpage.getProperty(“.pxResults.Risk”).toString();
Or
String propertyname= tools.findPage(“WorkListPage”).getProperty(“.pxResults.Risk”).toString();

Thanks,

Sai G