Solved
Forum Discussion
- NisHeraValued Contributor
choose a unique object or property in either of page
check whether that object /property exists.
you can use object spy to look at object /property of page/s
if object you can use object.exists method something like ............
if page.object.exist then page A else page B
if property simply check it something like..
if page.property == A then page A
if page.property == B then page B
- pbruneauNew Contributor
Thanks, I ended up using a different method. I created a script function where I pass in a page name and it will return true or false if the current page url contains that name.