import P2PMessageListing from '../../../pages/p2p/p2pMessageListing.page'; import * as stepVariableMap from '../../../util/stepVariableMap'; export async function openP2PThreadFromListing(subject: any) { const p2pMessageListing = new P2PMessageListing(); const replacedSubject = stepVariableMap.replaceWithSpecialKeyValue(subject); await p2pMessageListing.getMessageBySubject(replacedSubject).clickElement(); }