Test Results
Read published test results and understand report metrics.
Control Group Data
Read A/B test assignments, lead IDs, and set up external monitoring.
Testing Parameters
Open Remark automatically for testing and campaigns.
Hide Competing Tools
Automatically hide alternative chat solutions during A/B tests.
Rollout Strategy
Best practices for phased rollouts from 10% to 100%.
How A/B Testing Works
Remark manages control group assignment automatically on the backend. When a visitor arrives on your site, the backend determines whether they should be in the control group based on your configured rollout percentage.Cohorts and Show Rate
An A/B test splits eligible shopper sessions into two cohorts:
The show rate is the percentage of eligible sessions assigned to the treatment cohort. For example, a 25% show rate means roughly 25% of eligible sessions can see Remark and the remaining eligible sessions are control.
Changing the show rate changes future assignment. It does not rewrite sessions that were already assigned.
Control Group Assignment
- Persistent – The same visitor will always see the same experience across sessions
- Automatic – No client-side configuration required
- Backend-controlled – Managed by Remark’s services to maintain consistency across all entry points
Why Backend Control?
Remark uses backend control for A/B test assignment to ensure consistent experiences across multiple entry points and devices. Visitors can engage with Remark through various channels:- Initial page load – First visit to your site
- Page reloads – Navigating between pages or refreshing
- Email follow-ups – Clicking links in conversation notification emails
- Mobile transfers – Switching between mobile and desktop devices
- Cross-device continuity – Moving from one device to another mid-conversation
Reviewing Test Results in the Dashboard
After shoppers have been assigned to cohorts, Remark publishes lift analyses to the Dashboard. Open the Remark dashboard and select the A/B Test Results flask icon on the home page. For brand users, the icon appears when results become available for your workspace. If you do not see the icon, results may not be available yet.Result dates
Each analysis has a date range and an analyzed timestamp. If there are multiple published analyses, they may cover different date ranges or analysis settings. Use the date range first when comparing reports.Metrics
The report can include summary metrics, comparison tables, and statistical test sections. Common metric types include:- Session or visitor counts
- Conversion rate
- Revenue or average order value
- Lift or percent change between control and treatment
- Confidence intervals for estimated lift
Statistical tests
Statistical test sections summarize whether the observed difference is strong enough to treat as evidence rather than normal variation.
An inconclusive result does not mean Remark had no effect. It means the analysis did not have enough evidence to call a clear result for that metric and date range.
Report tables
Tables compare control and treatment values side by side. Rows usually represent metrics or segments, and columns show counts, rates, revenue, lift, confidence intervals, or notes. Use tables to check:- Whether both cohorts have enough sessions
- Whether conversion and revenue metrics move in the same direction
- Whether one metric is driven by a small number of outlier orders
- Whether the reported lift matches the business question you are trying to answer
Missing or inconclusive results
If results are missing, check whether:- Remark has published an analysis for your workspace
- The test has enough eligible sessions and conversions
- You are looking at the intended date range
- The test was active during the period you are reviewing
support@remark.ai if you need help interpreting a report or want Remark to publish a new analysis for a different date range.
Accessing A/B Test Data
SDK Initialization Event
Remark dispatches aremark:sdk-initialized event when the SDK has fully loaded and initialized. This is the ideal time to set up external monitoring or analytics.
Reading Control Group Status
The control group status is stored inlocalStorage and can be accessed synchronously:
Reading Lead ID
Remark also stores the lead ID (unique visitor identifier) inlocalStorage. This is useful for correlating Remark’s A/B test data with your own analytics:
- Page reloads and navigation
- Multiple sessions on the same device
- Cross-device tracking (when visitors return via email links)
- Match Remark’s user identification with your analytics
- Track individual visitor journeys across the A/B test
- Analyze conversion rates at the individual lead level
- Correlate chat engagement with purchase behavior
Setting Up External Monitoring
If you want to run your own analytics or A/B test monitoring alongside Remark, you can use the SDK initialization event and control group data.Google Analytics Integration
Segment Integration
Custom Analytics Endpoint
Testing with URL Parameters
For A/B testing purposes, you can use theremark_open URL parameter to open the Remark widget automatically when the page loads. This ensures visitors in the treatment group see and interact with Remark.
Open Widget on Load
- Demo and sales links – Guarantee prospects see Remark when visiting your site
- Email campaigns – Direct customers to chat from notification emails
- Customer support – Send customers directly into a conversation
- A/B test verification – Confirm Remark appears for treatment group testing
Combining with Analytics Parameters
You can combineremark_open=true with your existing analytics parameters:
Hiding Competing Chat Tools
When running an A/B test between Remark and another chat solution (e.g., HubSpot, Gorgias, Intercom), Remark will automatically hide the competing tool for users in the treatment group.Two-Pronged Approach
Remark uses a dual strategy to ensure competing tools are hidden reliably:- JavaScript API – If the tool exposes an API, Remark will call it to hide/remove the widget
- CSS Injection – Inject CSS styles to hide the tool’s DOM elements as a fallback
Example: HubSpot
Example: Gorgias
Example: Intercom
Testing & Debugging
Verify A/B Test Data
Test SDK Initialization
Testing Scenarios
Demo Link with Auto-Open
Create a shareable demo link that opens Remark automatically:Test Control vs Treatment Side-by-Side
Open two browser profiles or incognito windows to compare experiences: Window 1 - Control Group:Best Practices
Wait for SDK Initialization
Always wait for theremark:sdk-initialized event before accessing control group data or setting up integrations.
Handle Missing Data
The control group status might not be available immediately on the first page load.Non-Intrusive Monitoring
Ensure your monitoring code doesn’t interfere with the user experience:Respect Privacy
Only collect A/B test data that’s necessary for your analysis. Avoid collecting PII without proper consent.Troubleshooting
SDK Event Not Firing
If theremark:sdk-initialized event isn’t firing:
- Check browser console for errors
- Verify Remark script is loading correctly
- Check network requests for GraphQL calls to Remark’s API
- Ensure no ad blockers are interfering
Control Group Status Not Set
IfisInRemarkABControlGroup is always null:
- Check that your Remark installation is complete
- Verify backend API is reachable
- Check browser console for GraphQL errors
- Contact Remark support if issue persists
Competing Tool Not Hiding
If the competing chat tool isn’t being hidden:- Verify the tool’s JavaScript API is available (
window.HubSpotConversations, etc.) - Check CSS selectors are correct for the tool’s DOM structure
- Inspect DOM to find the tool’s container elements
- Update CSS selectors if the tool has changed its markup