Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

162,995

Downloads of v 3.9.1:

926

Last Update:

09 Feb 2018

Package Maintainer(s):

Software Author(s):

  • https://github.com/SeleniumHQ/selenium/blob/master/AUTHORS

Tags:

selenium grid hub node standalone

Selenium

This is not the latest version of Selenium available.

  • 1
  • 2
  • 3

3.9.1 | Updated: 09 Feb 2018

Downloads:

162,995

Downloads of v 3.9.1:

926

Maintainer(s):

Software Author(s):

  • https://github.com/SeleniumHQ/selenium/blob/master/AUTHORS

Selenium 3.9.1

This is not the latest version of Selenium available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Selenium, run the following command from the command line or from PowerShell:

>

To upgrade Selenium, run the following command from the command line or from PowerShell:

>

To uninstall Selenium, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade selenium -y --source="'INTERNAL REPO URL'" --version="'3.9.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade selenium -y --source="'INTERNAL REPO URL'" --version="'3.9.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install selenium
  win_chocolatey:
    name: selenium
    version: '3.9.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'selenium' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.9.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller selenium
{
    Name     = "selenium"
    Version  = "3.9.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'selenium':
  ensure   => '3.9.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 10 Feb 2018.

Description

Installs and configures selenium standalone, hub, or node server from https://github.com/SeleniumHQ/selenium/.

See https://github.com/dhoer/choco-selenium before attempting to create a hub or node server.

DISCLAIMER: This package is not part of the official Selenium project.


tools\.skipAutoUninstall
 
tools\capabilities.json
[
  {
    "browserName": "firefox",
    "maxInstances": 5,
    "version": "autoversion",
    "seleniumProtocol": "WebDriver"
  },
  {
    "browserName": "chrome",
    "maxInstances": 5,
    "version": "autoversion",
    "seleniumProtocol": "WebDriver"
  },
  {
    "browserName": "internet explorer",
    "maxInstances": 1,
    "version": "autoversion",
    "seleniumProtocol": "WebDriver"
  }
]
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$toolsDir = Split-Path $MyInvocation.MyCommand.Definition
. $toolsDir\helpers.ps1

$packageName   = $env:ChocolateyPackageName
$url           = 'https://selenium-release.storage.googleapis.com/3.9/selenium-server-standalone-3.9.1.jar'
$checksum      = 'b2445dab8ee073412d90aa6483a52a6362f6b4f049b3d7c45288481577203440'
$checksumType  = 'sha256'
$toolsLocation = Get-ToolsLocation
$seleniumDir   = "$toolsLocation\selenium"

$pp            = Get-SeleniumConfigDefaults
$name          = "Selenium $((Get-Culture).TextInfo.ToTitleCase($pp["role"]))"
$seleniumPath  = "$seleniumDir\selenium-server-standalone.jar"

if (!(Test-Path $seleniumDir)) {
  New-Item $seleniumDir -ItemType directory -Force
}

if ($pp["log"]) {
  $logPath  = "$seleniumDir\$($pp["role"]).log"
  Write-Debug "Selenium log: $logPath"
}

if ($pp["role"] -eq 'node') {
  if ($pp["capabilitiesJson"] -eq $null -or $pp["capabilitiesJson"] -eq '') {
    $pp["capabilitiesJson"] = "$seleniumDir\capabilities.json"
    $capabilitiesPath = "$toolsDir\capabilities.json"
    if (!(Test-Path $pp["capabilitiesJson"])) {
      Copy-Item $capabilitiesPath $pp["capabilitiesJson"]
    }
  }
  # https://stackoverflow.com/a/38212718/4548096
  $pp["capabilities"] = (Get-Content -Path $pp["capabilitiesJson"] -Raw).Replace("`r`n","`n") | ConvertFrom-Json | % { $_ }
  if ($pp["capabilities"] -isnot [Array]) { $pp["capabilities"] = @($pp["capabilities"]) }
  Browser-AutoVersion($pp["capabilities"])
}

# https://chocolatey.org/docs/helpers-get-chocolatey-web-file
Get-ChocolateyWebFile $packageName $seleniumPath $url -checksum $checksum -checksumType $checksumType

$config = Get-SeleniumConfig ($pp)
$configPath = "$seleniumDir\$($pp["role"])config.json"

if ($pp["role"] -ne 'standalone') {
   $config | ConvertTo-Json -Depth 99 | Set-Content $configPath
}

Write-Debug "Selenium configuration: $config"

if ($pp["role"] -eq 'hub') {
  $options = "-role hub -hubConfig ""$configPath"""
} elseif ($pp["role"] -eq 'node' ) {
  $options = "-role node -nodeConfig ""$configPath"""
} else { # standalone
  $keys = $config.keys
  foreach ($key in $keys) {
    if ($key -eq 'debug') {
      if ($config[$key] -eq $true) { $options += "-$key " }
    } else {
      $options += "-$key "
      if ($config[$key] -is [String] -and $key -ne 'role') {
        $options += """"
        $options += $config[$key]
        $options += """"
      } else {
        $options += $config[$key]
      }
      $options += " "
    }
  }
}

$cmdParams = "$($pp["javaoptions"]) -jar ""$seleniumPath"" $options"
$cmd = "java $cmdParams"

Write-Debug "Selenium command: $cmd"

if ($pp["service"] -eq $true) {
  nssm install "$name" java
  nssm set "$name" AppDirectory $seleniumDir
  nssm set "$name" AppParameters $cmdParams
  if ($pp["autostart"] -eq $true) {
    nssm set "$name" Start SERVICE_AUTO_START
  }
  if ($pp["log"]) {
    nssm set "$name" AppStdout $logPath
    nssm set "$name" AppStderr $logPath
    nssm set "$name" AppRotateFiles 1
  }
  nssm start "$name"
} else {
  $cmdPath = "$seleniumDir\$($pp["role"]).cmd"

  if ($pp["log"]) {
@"
@echo off
echo Starting $name...
for /f %%a in ('powershell -Command "Get-Date -format yyyyMMddTHHmmss"') do set datetime=%%a
if exist $logPath (
  move /Y $logPath $seleniumDir\$($pp["role"])-%datetime%.log >nul
  echo Rotated previous log
)
echo Logging to $logPath
"@ | Set-Content $cmdPath
    "$cmd > $logPath 2<&1" | Add-Content $cmdPath
  } else {
    $cmd | Set-Content $cmdPath
  }

  $menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
  $shortcutArgs = @{
    shortcutFilePath = "$menuPrograms\Selenium\$name.lnk"
    targetPath       = $cmdPath
    iconLocation     = "$toolsDir\icon.ico"
    workDirectory    = $seleniumDir
  }
  Install-ChocolateyShortcut @shortcutArgs

  if ($pp["autostart"] -eq $true) {
    $startupArgs = @{
      shortcutFilePath = "$menuPrograms\Startup\$name.lnk"
      targetPath       = $cmdPath
      iconLocation     = "$toolsDir\icon.ico"
      workDirectory    = $seleniumDir
    }
    Install-ChocolateyShortcut @startupArgs
  }
}

$rules = Get-NetFirewallRule
$par = @{
    DisplayName = "$name"
    LocalPort   = $pp["port"]
    Direction   = "Inbound"
    Protocol    = "TCP"
    Action      = "Allow"
}
if (-not $rules.DisplayName.Contains($par.DisplayName)) {New-NetFirewallRule @par}

Write-Debug "Selenium firewall: $par"
tools\chocolateyUninstall.ps1
$pp            = Get-PackageParameters
$toolsLocation = Get-ToolsLocation
$seleniumDir   = "$toolsLocation\selenium"
$menuPrograms  = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutDir   = "$menuPrograms\Selenium"
$startupDir    = "$menuPrograms\Startup"
$names         = @("Selenium Standalone", "Selenium Hub", "Selenium Node")

foreach ($name in $names) {
  $service = Get-WmiObject -Class Win32_Service -Filter "Name='$name'"
	if ($service -ne $null) {
    nssm remove "$name" confirm
  }

  $rules = Get-NetFirewallRule
  if ($rules.DisplayName.Contains($name)) {Remove-NetFirewallRule -DisplayName $name}

  if (Test-Path $shortcutDir) {
    $shortcutFile = "$shortcutDir\$name.lnk"
    If (Test-Path $shortcutFile) {
      Remove-Item $shortcutFile -Force
    }

    $directoryInfo = Get-ChildItem $shortcutDir | Measure-Object
    If ($directoryInfo.count -eq 0) {
      Remove-Item $shortcutDir -Force
    }
  }

  if (Test-Path $startupDir) {
    $startupFile = "$startupDir\$name.lnk"
    If (Test-Path $startupFile) {
      Remove-Item $startupFile -Force
    }
  }
}

wmic Path win32_process Where "CommandLine Like '%selenium-server-standalone.jar%'" Call Terminate

if ($pp["capabilitiesJson"] -ne $null -and $pp["capabilitiesJson"] -ne '') {
  If (Test-Path $pp["capabilitiesJson"]) {
    Remove-Item $pp["capabilitiesJson"] -Force
  }
}

if (Test-Path $seleniumDir) {
  $seleniumPath  = "$seleniumDir\selenium-server-standalone.jar"
  if (Test-Path $seleniumPath) {
    Remove-Item $seleniumPath -Force
  }

  get-childitem $seleniumDir -include *.cmd -recurse | foreach ($_) {remove-item $_.fullname}
  get-childitem $seleniumDir -include *config.json -recurse | foreach ($_) {remove-item $_.fullname}
  get-childitem $seleniumDir -include *capabilities*.json -recurse | foreach ($_) {remove-item $_.fullname}
  get-childitem $seleniumDir -include *.log -recurse | foreach ($_) {remove-item $_.fullname}

  $directoryInfo = Get-ChildItem $seleniumDir | Measure-Object
  If ($directoryInfo.count -eq 0) {
    Remove-Item $seleniumDir -Force
  }
}
tools\helpers.ps1
function Get-SeleniumConfigDefaults {
  $pp = Get-PackageParameters

  if ($pp["role"] -eq $null -or $pp["role"] -eq '') { $pp["role"] = 'standalone' }
  if ($pp["username"] -eq $null -or $pp["username"] -eq '') { $pp["username"] = "$env:UserName" }
  if ($pp["port"] -eq $null -or $pp["port"] -eq '') {
    if ($pp["role"] -eq 'node') { $pp["port"] = 5555 } else { $pp["port"] = 4444 }
  }
  if ($pp["log"] -eq $null -or $pp["log"] -eq '') { $pp["log"] = $false }
  if ($pp["service"] -eq $null -or $pp["service"] -eq '') { $pp["service"] = $false }
  if ($pp["autostart"] -eq $null -or $pp["autostart"] -eq '') { $pp["autostart"] = $false }
  if ($pp["debug"] -eq $null -or $pp["debug"] -eq '') { $pp["debug"] = $false }
  if ($pp["browserTimeout"] -eq $null -or $pp["browserTimeout"] -eq '') { $pp["browserTimeout"] = 0 }
  if ($pp["enablePassThrough"] -eq $null -or $pp["enablePassThrough"] -eq '') { $pp["enablePassThrough"] = $true }
  if ($pp["timeout"] -eq $null -or $pp["timeout"] -eq '') { $pp["timeout"] = 1800 }
  if ($pp["capabilityMatcher"] -eq $null -or $pp["capabilityMatcher"] -eq '') { $pp["capabilityMatcher"] = 'org.openqa.grid.internal.utils.DefaultCapabilityMatcher' }
  if ($pp["cleanUpCycle"] -eq $null -or $pp["cleanUpCycle"] -eq '') { $pp["cleanUpCycle"] = 5000 }
  if ($pp["newSessionWaitTimeout"] -eq $null -or $pp["newSessionWaitTimeout"] -eq '') { $pp["newSessionWaitTimeout"] = -1 }
  if ($pp["servlets"] -eq $null -or $pp["servlets"] -eq '') { $pp["servlets"] = @() }
  if ($pp["throwOnCapabilityNotPresent"] -eq $null -or $pp["throwOnCapabilityNotPresent"] -eq '') { $pp["throwOnCapabilityNotPresent"] = $true }
  if ($pp["withoutServlets"] -eq $null -or $pp["withoutServlets"] -eq '') { $pp["withoutServlets"] = @() }
  if ($pp["hub"] -eq $null -or $pp["hub"] -eq '') { $pp["hub"] = 'http://localhost:4444' }
  if ($pp["downPollingLimit"] -eq $null -or $pp["downPollingLimit"] -eq '') { $pp["downPollingLimit"] = 2 }
  if ($pp["maxSession"] -eq $null -or $pp["maxSession"] -eq '') { $pp["maxSession"] = 5 }
  if ($pp["nodePolling"] -eq $null -or $pp["nodePolling"] -eq '') { $pp["nodePolling"] = 5000 }
  if ($pp["nodeStatusCheckTimeout"] -eq $null -or $pp["nodeStatusCheckTimeout"] -eq '') { $pp["nodeStatusCheckTimeout"] = 5000 }
  if ($pp["proxy"] -eq $null -or $pp["proxy"] -eq '') { $pp["proxy"] = 'org.openqa.grid.selenium.proxy.DefaultRemoteProxy' }
  if ($pp["register"] -eq $null -or $pp["register"] -eq '') { $pp["register"] = $true }
  if ($pp["registerCycle"] -eq $null -or $pp["registerCycle"] -eq '') { $pp["registerCycle"] = 5000 }
  if ($pp["unregisterIfStillDownAfter"] -eq $null -or $pp["unregisterIfStillDownAfter"] -eq '') { $pp["unregisterIfStillDownAfter"] = 60000 }

  return $pp
}

function Get-SeleniumConfig ($pp) {
  $config = @{}

  $config["role"] = $pp["role"]
  $config["port"] = $pp["port"]
  $config["browserTimeout"] = $pp["browserTimeout"]
  $config["timeout"] = $pp["timeout"]
  $config["debug"] = $pp["debug"]
  $config["enablePassThrough"] = $pp["enablePassThrough"]

  if ($pp["jettyMaxThreads"] -ne $null -and $pp["jettyMaxThreads"] -ne '') { $config["jettyMaxThreads"] = $pp["jettyMaxThreads"] }

  if ($pp["role"] -eq 'hub') {
    $config["newSessionWaitTimeout"] = $pp["newSessionWaitTimeout"]
    $config["capabilityMatcher"] = $pp["capabilityMatcher"]
    $config["maxSession"] = $pp["maxSession"]
    $config["newSessionWaitTimeout"] = $pp["newSessionWaitTimeout"]
    $config["throwOnCapabilityNotPresent"] = $pp["throwOnCapabilityNotPresent"]
    $config["servlets"] = $pp["servlets"]
    $config["withoutServlets"] = $pp["withoutServlets"]

    if ($pp["prioritizer"] -ne $null -and $pp["prioritizer"] -ne '') { $config["prioritizer"] = $pp["prioritizer"] }
  } elseif ($pp["role"] -eq 'node' ) {
    $config["cleanUpCycle"] = $pp["cleanUpCycle"]
    $config["downPollingLimit"] = $pp["downPollingLimit"]
    $config["hub"] = $pp["hub"]
    $config["maxSession"] = $pp["maxSession"]
    $config["nodePolling"] = $pp["nodePolling"]
    $config["nodeStatusCheckTimeout"] = $pp["nodeStatusCheckTimeout"]
    $config["proxy"] = $pp["proxy"]
    $config["register"] = $pp["register"]
    $config["registerCycle"] = $pp["registerCycle"]
    $config["unregisterIfStillDownAfter"] = $pp["unregisterIfStillDownAfter"]
    $config["capabilities"] = $pp["capabilities"]
  }

  return $config
}

function Get-ChromeVersion() {
  $root   = 'HKLM:\SOFTWARE\Google\Update\Clients'
  $root64 = 'HKLM:\SOFTWARE\Wow6432Node\Google\Update\Clients'
  foreach ($r in $root,$root64) {
    $gcb = gci $r -ea 0 | ? { (gp $_.PSPath).name -eq 'Google Chrome' }
    if ($gcb) { return $gcb.GetValue('pv') }
  }
}

function Get-FirefoxVersion() {
  try {
    return iex '&"$env:ProgramFiles\Mozilla Firefox\firefox.exe" -v | more' | %{ [regex]::matches($_, "Mozilla Firefox (.*)") } | %{ $_.Groups[1].Value }
  } catch {
    try {
      return iex '&"$env:ProgramFiles(x86)\Mozilla Firefox\firefox.exe" -v | more' | %{ [regex]::matches($_, "Mozilla Firefox (.*)") } | %{ $_.Groups[1].Value }
    } catch {
      return ""
    }
  }
}

function Get-InternetExplorerVersion() {
  $reg = 'HKLM:\SOFTWARE\Microsoft\Internet Explorer'
  try {
    return (Get-ItemProperty -Path $reg -Name svcVersion).svcVersion
  } catch {
    try {
      return (Get-ItemProperty -Path $reg -Name version).version
    } catch {
      return ""
    }
  }
}

function Get-MicrosoftEdgeVersion() {
  try {
    return (Get-AppXPackage *edge*).Version
  } catch {
    return ""
  }
}

function Browser-AutoVersion($capabilities) {
  for ($i=0; $i -lt $capabilities.length; $i++) {
    if ($capabilities[$i].version -eq 'autoversion') {
      if ($capabilities[$i].browserName -eq 'firefox') {
        $capabilities[$i].version = Get-FirefoxVersion
      } elseif ($capabilities[$i].browserName -eq 'chrome') {
        $capabilities[$i].version = Get-ChromeVersion
      } elseif  ($capabilities[$i].browserName -eq 'internet explorer') {
        $capabilities[$i].version = Get-InternetExplorerVersion
      } elseif  ($capabilities[$i].browserName -eq 'MicrosoftEdge') {
        $capabilities[$i].version = Get-MicrosoftEdgeVersion
      }
    }
  }
}
tools\icon.ico
 
tools\icon.png
 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Selenium 3.14.0 2233 Wednesday, August 15, 2018 Approved
Selenium 3.13.0 884 Wednesday, June 27, 2018 Approved
Selenium 3.12.0 557 Thursday, May 31, 2018 Approved
Selenium 3.11.0 13956 Monday, March 19, 2018 Approved
Selenium 3.10.0 310 Monday, March 19, 2018 Approved
Selenium 3.9.1 926 Friday, February 9, 2018 Approved
Selenium 3.9.0 377 Tuesday, February 6, 2018 Approved
Selenium 3.8.1 9008 Thursday, December 7, 2017 Approved
Selenium 3.7.1 442 Tuesday, November 7, 2017 Approved
Selenium 3.7.0 379 Tuesday, November 7, 2017 Approved
Selenium 3.6.0 555 Thursday, October 5, 2017 Approved

This package has no dependencies.

Discussion for the Selenium Package

Ground Rules:

  • This discussion is only about Selenium and the Selenium package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Selenium, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus