Skip to main content
Skip table of contents

frameId: a unique parameter which will create if it doesn’t exist yet, and reuse if it exists already.

Tag attribute: frameId

The frameId attribute makes the session can be reused. 

Detailed Description

The frameId will be a unique parameter which will create if it doesn’t exist yet, and reuse if it exists already.


KeepAlive can be set as a param when open a new session.

XML
<ytriaAutomation>
	<ShowUsers keepalive="true" frameId="users1">
	</ShowUsers>

	<ShowGroups keepalive="true" frameId="groups1">
	</ShowGroups>

	<ShowUsers keepalive="true" frameId="users2">
	</ShowUsers>

	<ShowGroups keepalive="true" frameId="groups2">
	</ShowGroups>

	<ShowUsers frameId="users1"> <!-- reuse -->
		<Select lines="ByValue">
			<SetParam ColumnID="userPrincipalName" Value="AutoTester2@M365x250522.onmicrosoft.com"/>
		</Select>
		<SelectedUserLoadMore/>
	</ShowUsers>

	<ShowGroups frameId="groups1"> <!-- reuse -->
		<Select lines="ByValue">
			<SetParam ColumnID="displayName" Value="All Company"/>
		</Select>
		<SelectedGroupLoadMore/>
	</ShowGroups>

	<ShowUsers frameId="users2"> <!-- reuse -->
		<Select lines="ByValue">
			<SetParam ColumnID="userPrincipalName" Value="CamilaW@M365x250522.onmicrosoft.com"/>
		</Select>
		<SelectedUserLoadMore/>
	</ShowUsers>

	<ShowGroups frameId="groups2"> <!-- reuse -->
		<Select lines="ByValue">
			<SetParam ColumnID="displayName" Value="Digital Initiative Public Relations"/>
		</Select>
		<SelectedGroupLoadMore/>
	</ShowGroups>

</ytriaAutomation>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.