How to use page title as comparison value in microflow

0
The page title was implemented using Override page title as shown below. Now, I would like to implement a function that calls a microflow within that page and operates if the title of the page is the same as the randomly set String value, and compares it again with a different property if it is different. (A separate loop must be used for each title name.) How should I implement it?
asked
1 answers
1

The page title is not directly accessible on a page.

I would rather pass an object with an attribute containing the relevant value to that page as a parameter. Then use that object in your process logic.

It is probably also possible to grab the title in a nanoflow using javascript. But that would be a rather complicated custom workaround.

answered