@wppconnect-team/wppconnect - v1.38.0
    Preparing search index...

    Function getABProps

    • Get all A/B test property configurations for the current session These are experimental flags that WhatsApp uses for feature testing

      Returns ABPropConfig[]

      Array of A/B property configurations with names

      // Get all A/B props as an array
      const abProps = WPP.conn.getABProps();
      console.log('Total A/B props:', abProps.length);

      // Log each prop with its name
      abProps.forEach(prop => {
      console.log(`${prop.name}: ${prop.configValue}`);
      });