To check if Firefox for Android on LineageOS 23.2 is running a Marionette server, you can use the following methods:
Check via Firefox Settings/Preferences:
about:config.marionette.enabled. If it exists and is set to true, Marionette is enabled. If it does not exist, you can try creating it as a boolean preference and setting it to true (this may only work on Firefox Beta or Nightly, not the stable release).Check for Remote Debugging:
Check for Marionette Port:
netstat or ss on your device (via ADB or terminal app) to check if this port is open and listening. For example:
bashadb shell netstat -tuln | grep 2828
Visual Indicator:
Note: Marionette support on Android (especially stable releases) is not as straightforward as on desktop. It is more reliably available in Firefox Beta or Nightly builds, and even then, the Firefox/Geckoview divide can cause issues.
Would you like help enabling Marionette if it's not currently running?