Page automation properties

 

Use the properties below to override settings made in various page automation builders, such as Data Page, Data Column Modifier, Rich Data Definition, etc. These properties normally reside in the bowstreet.properties file.

Screen Field Description
bowstreet.pageautomation.date.data= Sets the format string for the data value of dates
bowstreet.pageautomation.date.display= Sets the format string for the display of dates
bowstreet.pageautomation.date.yearAdjustCutoff=50 Sets the date century format to either the 20th or 21st century

  • All dates parsed by the Page Automation date parser that are less than this value will have 2000 added to them.

  • All dates parsed by the Page Automation date parser that are greater than this value but less than 100, they will have 1900 added to them.

To work with dates prior to 1900, comment out this property.

bowstreet.pageautomation.dateTime.data= Sets the format string for the data value of a datetime
bowstreet.pageautomation.dateTime.display= Sets the format string for the display of a datetime
bowstreet.pageautomation.time.data= Sets the format string for the data value of times
bowstreet.pageautomation.time.display= Seta the format string for the display of times
bowstreet.pageautomation.force_separate_leaf_when_repeated When set to false, will take repeated elements in an XML variable and display them as a comma-delimited string.

When set to true, repeated elements are displayed separately.

Example:

Based on the following XML,

<UnitTests>

   <UnitTest>

      <name>test1</name>

      <urls>

         <url>one</url>

         <url>two</url>

         <url>three</url>

      </urls>

   </UnitTest>

</UnitTests>

If FALSE, will be displayed as: test one, two, three

If TRUE, will be displayed as:

test one

     two

     three