Questions tagged [optimizely]

Optimizely provides A/B testing, Multivariate Testing and optimizations for websites and mobile apps via software as a service

Optimizely is a feature management and experimentation platform that provides feature flags, A/B testing, multivariate testing, recommendations, and personalization. It includes a reporting interface that provides results and statistical significance powered by Stats Engine, built in conjunction with Stanford University.

Marketing teams can use Optimizely's visual editor to run A/B tests without having to deploy code. This functionality can be extended by adding custom CSS and JavaScript and building reusable templates called Extensions.

Product teams can use Optimizely's Full Stack solution to run experiments across any application and control feature releases with feature flags using Optimizely's server-side, JavaScript, mobile, and OTT SDKs. Make every feature on your roadmap an opportunity to learn.

Development teams can use Optimizely's free Rollouts solution to put code behind feature flags to easily roll out and roll back features in any application without additional code deploys using the same SDKs as Optimizely FullStack. Mitigate risk for every feature on your roadmap.

Resources

93 questions
1
vote
1 answer

Pulling revenue data from a Google Analytics e-commerce snippet into another revenue tracking snippet

We currently have Google Analytics ecommerce tracking set up on our form thank-you pages. We're also using Optimizely to run A/B/n tests on our website. Optimizely's an online split-testing platform, that also has revenue tracking you can…
1
vote
1 answer

Will Optimizely work with CardinalPath GAS wrapper?

Looking at whether using Optimizely A/B testing would work with gas. "Because Optimizely runs first and creates _gaq, it's very important for any custom implementation of GA to make sure it checks for the existence of _gaq before it runs, and if…
Conando
  • 201
  • 1
  • 4
  • 16
1
vote
1 answer

Apply jQuery UI to Optimizely code?

I'm attempting to append a div to the body of a site, then hide it by sliding it to the left when a user clicks the close button using jquery. The site is currently using Drupal 7, and for multiple reasons directly editing the file is not a…
1
vote
0 answers

A/B testing Optimizely and Google Analytics with Screen Resolution=(not set)

We've setup an A/B in Optimizely to test a completely new design: http://offerta.se that we're testing against our legacy design: http://offerta.se/?classic=1 Optimizely is setup to redirect 50% of our CPC traffic to the legacy design. The old…
Niels Bosma
  • 11,312
  • 27
  • 86
  • 143
1
vote
1 answer

How to test mobile web app built with jQuery Mobile with Optimizely?

I've built a mobile web app with jQuery Mobile. In the index.php file, there're multiple pages declared as data-role="some_page_name" and their urls are like index.php#my_profile. Now I want to use Optimizely to do A/B test on one of the pages. I…
thmmrs
  • 31
  • 3
0
votes
1 answer

Optimizely Revenue Tracking jQuery snippet

I am trying to enable revenue tracking in Optimizely. I have customized the jQuery snippet that the Optimizely knowledge base provides and installed it on the last page prior to the completion of the checkout process. Here is the "Complete Booking"…
TrentonMcManus
  • 466
  • 1
  • 6
  • 16
0
votes
1 answer

DOMException with Content-Security-Policy header in Optimizely Web

In a project we use Optimizely Web Experiments integration for A/B testing. Optimizely Web comes with a quite nice Web Editor that allows you to modify the variants of your A/B test directly in the browser. Now, some time ago we decided for security…
0
votes
0 answers

Trying to run Optimizely Agent on macOS, getting an error on "make setup" step

I'm on macOS 10.15.7. I installed Golang 1.16, cloned the https://github.com/optimizely/agent repository, cd'ed into it and ran "make setup" like the instructions said to. I'm getting the following error: mbp2a95:agent kbecker$ make…
0
votes
1 answer

Will Google Optimize keep testing my page variants if I push a change to the landing page?

Two parts to this question: If I have a landing page with a simple hero where the primary text is being A/B tested, but I decide I want to change the control text programmatically and deploy, will Google Optimize keep testing even though the…
Nikita Jerschow
  • 628
  • 1
  • 8
  • 23
0
votes
0 answers

Optimizely React SDK is downloading all configuration

I am trying to integrate Optimizely feature flag in my react app. Below is code that I use to initialise optimizely sdk. import { createInstance } from '@optimizely/react-sdk'; const optimizely = createInstance({ sdkKey: '', …
Darshan
  • 151
  • 5
  • 13
0
votes
0 answers

How to mock optimizelySDK.createInstance().onReady() using Jest?

Here is my mock file __mocks__/@optimizely/optimizely-sdk.js const optimizelySDK = jest.requireActual('@optimizely/optimizely-sdk') optimizelySDK.createInstance().onReady = () => ({ success: false })) module.exports = optimizelySDK Here is my…
Croisade
  • 193
  • 6
0
votes
0 answers

How to run custom code on an event in Optimizelty or re-run the custom code

I am writing an experiment with Optimizely. I have some variation level custom code, as described here. I would like to run that code when I dispatch an event. I browsered through the Optimizely docs but I haven't found the solution yet. So far, I…
mayk93
  • 1,187
  • 2
  • 12
  • 30
0
votes
0 answers

How to run experiments for the same event in different pages?

We have product recommendations on multiple pages of our site. eg: /home, /details It is possible to add quantities for recommended products from both these pages. Quantity updates from all pages can be tracked using a single event since they are…
Epsilon
  • 160
  • 1
  • 10
0
votes
1 answer

Getting I/O exception (java.net.SocketException) caught when processing request

I have been using optimizely 'core-api', version:'3.3.0' and 'core-httpclient-impl', version:'3.3.0' for my java app. I frequently see this exception in my info log "I/O exception (java.net.SocketException) caught when processing request to…
Picco
  • 37
  • 1
  • 8
0
votes
1 answer

Snippet of code works on console and through Injector but not through Optimizely

Has anyone experienced that only part of their codes that gets ignored by Optimizely? So my development environment used npm and injector on chrome. So far my code works pretty. But when I copy-pasted the built version to Optimizely custom JS, only…