SessionCam can easily enable you to capture Experience information from Qubit when you are running an MVT or A/B Test.
In order to get this working simply drop us a message on support@sessioncam.com, click here to raise a ticket, or use the link for "Need more help?" in our navigation menu.
Product Admin Users and the SessionCam Customer Success Team can easily activate this integration directly from the SessionCam console.
In order to set this up please the following instructions:
- Log into SessionCam
- Expand the "Manage" section in the navigation menu
- Click "Account Settings"
- Click the tab titled "Integrations"
- When enabling the integration with Qubit for your A/B Testing you will need to go through the following steps below, this will give you the option to customise the data that is sent to SessionCam, you can chose to not send any customisation to see the most basic level of the integration.
Experience tracking
There are three different ways to track your experiences, depending on how much detail you want to pass to SessionCam. You can decide this for each experience individually. You will add these code snippets to the Advanced Mode in your Qubit triggers.
1. No additional data
If you decide to not add any additional information, then no code snippet needs to be added to the experience trigger.
In the SessionCam console you will see the data in the format below:
Variable Name |
Variable Value |
Qubit: 57534 |
variation |
Qubit: 57534 |
control |
2. Experience name
You can choose to provide an experience name to help identify it in the SessionCam console. To do this you need to add the snippet below to your Qubit triggers. All you need to change is the string at the end of the second line.
window.__qubit.sessionCamData = window.__qubit.sessionCamData || {}
window.__qubit.sessionCamData[options.meta.experimentId] = 'Abandonment Modal'
In the SessionCam console you will see the data in the format below:
Variable Name |
Variable Value |
Qubit: Abandonment Modal |
variation |
Qubit: Abandonment Modal |
control |
3. Experience name + variation name
You can also provide experience and variation names. This is the recommended option if you create an experience with multiple variations. It allows you to provide a name for each variation, so you can distinguish between them in the SessionCam Console. An example for an experience with two variations is shown below.
window.__qubit.sessionCamData = window.__qubit.sessionCamData || {}
window.__qubit.sessionCamData[options.meta.experimentId] = {
expName: 'Sale Banner',
variations: {
335464: 'control',
335465: 'variation 1 - banner',
335466: 'variation 2 - overlay'
}
}
“variations” is an object, containing the names for each variation. You have to make sure the numbers match the variation IDs. Also remember to update them if you duplicate the Experiment. The variation ID is the last number in the URL when editing an Experience. Your control ID is always one number less than your first variation.
Variable Name |
Variable Value |
Qubit: Sale Banner |
control |
Qubit: Sale Banner |
variation 1 - banner |
Qubit: Sale Banner |
variation 2 - overlay |
4. Find the sessions in the SessionCam Console
You can find a tutorial below that can guide you through filtering your sessions by the Qubit Variation details that are sent to SessionCam.