Question
2
Replies
4683
Views
Allianz SE
Posted: June 12, 2017
Last activity: June 13, 2017
Closed
Solved
copy java property to clipboard
How to copy the value of a java property which is defined in java step of an activity to a clipboard page?
In the same java step first use tool.findPage method to get the Clipboard page. Then set the value of the property. The code will be like the below code snippet.
ClipboardPage myPage = tool.findPage("PageName");
myPage.getProperty("PropertyName").setValue(var);
replace the PageName with your page name, the PropertyName with your property name and var with the java variable holding the value.