Hi rasmusa92051331,
you can do it using a/b testing campaign as well
- To identify if the visitor is coming from a specific page. Set cookies using profile scripts
if(user.isFirstSession){
//identify the targeted page
if (page.url.indexOf("xx") > -1) {
//set cookies
user.setLocal('cookies', 'yy');
var cookies =user.getLocal('cookies');
if(cookies){
return cookies;
}
}
}
above profile will be available in audience.
For returning visitor you can use in-built audience 'Returning visitor'.