Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Selenium 1.0.38
system/selenium-1.0.38
- 14 December 2023 -
Update Chrome driver for Chrome 120 support.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/selenium-scripts-9.zip</URL> <MD5>c8e180d0e3c035de8ffee5a91df51c5a</MD5> <SHA256>9326774592b1e5ed48c1c8b95d619ccd15231072d04ad0cbe53a6939d40366ba</SHA256> <FileName>selenium-scripts-9.zip</FileName> <FileSize>19666</FileSize> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.32.0/geckodriver-v0.32.0-linux64.tar.gz</URL> <MD5>c4e23a5fea0f294bb2150a0d9e117aa5</MD5> <SHA256>c33054fda83b8d3275c87472dd005a9f70372e9338c2df2665d8cfeb923e67ba</SHA256> <FileName>geckodriver-v0.32.0-linux64.tar.gz</FileName> <FileSize>2991185</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.32.0/geckodriver-v0.32.0-macos.tar.gz</URL> <MD5>3d6aa6528e2e05cc53cebb77525aaabb</MD5> <SHA256>8c5bef0690de88a36ef94d07c71c7d7725b115b147d348b56cfae5f3c56bc8a1</SHA256> <FileName>geckodriver-v0.32.0-macos.tar.gz</FileName> <FileSize>2104563</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.32.0/geckodriver-v0.32.0-win32.zip</URL> <MD5>4c437d64d29e1a23237f1ec8d626af5f</MD5> <SHA256>ec7df877a4c8b30b96e00306ea01a203b18283735afeab56976c50cd30beb4b5</SHA256> <FileName>geckodriver-v0.32.0-win32.zip</FileName> <FileSize>1601693</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.71/mac-x64/chromedriver-mac-x64.zip</URL> <MD5>2ad114582d015915a34ea8e88d3cc21d</MD5> <SHA256>4e1b0a38e2cd7261535272e2ad21de6bdc33c3e1720b7bfb23fe6085bcfc1808</SHA256> <FileName>chromedriver-mac-x64-120.zip</FileName> <FileSize>9240079</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.71/linux64/chromedriver-linux64.zip</URL> <MD5>4a6dd9e20c3d5057b996a9eba7a5f1ba</MD5> <SHA256>5fc6e26b505a2d09b958a9f9bdd4a1a50e00eec3cd67c96099e5e8623d9e6ab7</SHA256> <FileName>chromedriver-linux64-120.zip</FileName> <FileSize>8574447</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.71/win64/chromedriver-win64.zip</URL> <MD5>d21de59f6df16d5bcdb7730142458d7c</MD5> <SHA256>8e0a4c7cf5aa3e25f409958b05037f158cc828058dd0f985dde27278378573a6</SHA256> <FileName>chromedriver-win64-120.zip</FileName> <FileSize>8548153</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash if which pip3>/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: Python pip3 is not found on the system! This test profile needs Python pip3 to proceed." echo 2 > ~/install-exit-status fi pip3 install --user selenium==3.141.0 unzip -o selenium-scripts-9.zip # Drivers tar -xf geckodriver-v0.32.0-linux64.tar.gz unzip -o chromedriver-linux64-120.zip mv chromedriver-linux64/chromedriver . sed -i 's,https://krakenbenchmark.mozilla.org/,https://mozilla.github.io/krakenbenchmark.mozilla.org/index.html,g' selenium-run-kraken.py # Script echo "#!/bin/bash rm -f run-benchmark.py cp -f selenium-run-\$1.py run-benchmark.py sed -i \"s/Firefox/\$2/g\" run-benchmark.py echo \"from selenium import webdriver driver = webdriver.\$2() if \\\"browserName\\\" in driver.capabilities: browserName = driver.capabilities['browserName'] if \\\"browserVersion\\\" in driver.capabilities: browserVersion = driver.capabilities['browserVersion'] else: browserVersion = driver.capabilities['version'] print('{0} {1}'.format(browserName, browserVersion)) driver.quit()\" > browser-version.py PATH=\$HOME:\$PATH python3 ./run-benchmark.py > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status PATH=\$HOME:\$PATH python3 ./browser-version.py > ~/pts-footnote " > selenium chmod +x selenium
install_macosx.sh
#!/bin/bash if which pip3>/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: Python pip3 is not found on the system! This test profile needs Python pip3 to proceed." echo 2 > ~/install-exit-status fi pip3 install --user selenium==3.141.0 unzip -o selenium-scripts-9.zip # Drivers tar -xf geckodriver-v0.32.0-macos.tar.gz unzip -o chromedriver-mac-x64-120.zip mv chromedriver-mac-x64/chromedriver . sed -i 's,https://krakenbenchmark.mozilla.org/,https://mozilla.github.io/krakenbenchmark.mozilla.org/index.html,g' selenium-run-kraken.py # Script echo "#!/bin/bash rm -f run-benchmark.py cp -f selenium-run-\$1.py run-benchmark.py sed -i \"s/Firefox/\$2/g\" run-benchmark.py echo \"from selenium import webdriver driver = webdriver.\$2() if \\\"browserName\\\" in driver.capabilities: browserName = driver.capabilities['browserName'] if \\\"browserVersion\\\" in driver.capabilities: browserVersion = driver.capabilities['browserVersion'] else: browserVersion = driver.capabilities['version'] print('{0} {1}'.format(browserName, browserVersion)) driver.quit()\" > browser-version.py PATH=\$HOME:\$PATH python3 ./run-benchmark.py > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status PATH=\$HOME:\$PATH python3 ./browser-version.py > ~/pts-footnote " > selenium chmod +x selenium
install_windows.sh
#!/bin/sh unzip -o selenium-scripts-9.zip # Drivers unzip -o geckodriver-v0.32.0-win32.zip unzip -o chromedriver-win64-120.zip mv chromedriver-win64/chromedriver.exe . pip3 install --user selenium==3.141.0 HOME=$DEBUG_REAL_HOME pip3 install --user selenium==3.141.0 sed -i 's,https://krakenbenchmark.mozilla.org/,https://mozilla.github.io/krakenbenchmark.mozilla.org/index.html,g' selenium-run-kraken.py # Script echo "#!/bin/sh HOME=\$DEBUG_REAL_HOME cmd /c \"\$DEBUG_REAL_HOME\AppData\Local\Programs\Python\Python37\Scripts\pip3.exe\" install --user selenium==3.141.0 rm -f run-benchmark.py cp -f selenium-run-\$1.py run-benchmark.py sed -i \"s/Firefox/\$2/g\" run-benchmark.py echo \"from selenium import webdriver driver = webdriver.\$2() if \\\"browserName\\\" in driver.capabilities: browserName = driver.capabilities['browserName'] if \\\"browserVersion\\\" in driver.capabilities: browserVersion = driver.capabilities['browserVersion'] else: browserVersion = driver.capabilities['version'] print('{0} {1}'.format(browserName, browserVersion)) driver.quit()\" > browser-version.py cmd /c \"\$DEBUG_REAL_HOME\AppData\Local\Programs\Python\Python37\python.exe\" ./run-benchmark.py > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status cmd /c \"\$DEBUG_REAL_HOME\AppData\Local\Programs\Python\Python37\python.exe\" ./browser-version.py > ~/pts-footnote " > selenium chmod +x selenium
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>SPEEDOMETER RUNS PER MINUTE RESULT: #_RESULT_#</OutputTemplate> <LineHint>SPEEDOMETER</LineHint> <ResultScale>Runs Per Minute</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>MOTIONMARK RESULT: #_RESULT_#</OutputTemplate> <LineHint>MOTIONMARK</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>BASEMARK OVERALL SCORE RESULT: #_RESULT_#</OutputTemplate> <LineHint>BASEMARK</LineHint> <ResultScale>Overall Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>WEBXPRT SCORE RESULT: #_RESULT_#</OutputTemplate> <LineHint>WEBXPRT</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>ARES-6 GEOMETRIC MEAN RESULT: #_RESULT_#</OutputTemplate> <LineHint>ARES-6</LineHint> <ResultScale>ms</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>OCTANE RESULT: #_RESULT_#</OutputTemplate> <LineHint>OCTANE</LineHint> <ResultScale>Geometric Mean</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>JETSTREAM RESULT: #_RESULT_#</OutputTemplate> <LineHint>JETSTREAM</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>JSTREAM2 RESULT: #_RESULT_#</OutputTemplate> <LineHint>JSTREAM2</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>CANVASMARK RESULT: #_RESULT_#</OutputTemplate> <LineHint>CANVASMARK</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>STYLEBENCH RESULT: #_RESULT_#</OutputTemplate> <LineHint>STYLEBENCH</LineHint> <ResultScale>Runs / Minute</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>MAZESOLVER RESULT: #_RESULT_#</OutputTemplate> <LineHint>MAZESOLVER</LineHint> <ResultScale>Seconds</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>PSPDFKitWASM RESULT: #_RESULT_#</OutputTemplate> <LineHint>PSPDFKitWASM</LineHint> <ResultScale>Score</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>KRAKEN RESULT: #_RESULT_# +/- 1.1%</OutputTemplate> <LineHint>KRAKEN</LineHint> <StripFromResult>ms</StripFromResult> <ResultScale>ms</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>WASM COLLISION RESULT: #_RESULT_#</OutputTemplate> <LineHint>WASM COLLISION</LineHint> <ResultScale>ms</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>WASM CONVOLUTE RESULT: #_RESULT_#</OutputTemplate> <LineHint>WASM CONVOLUTE</LineHint> <ResultScale>ms</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>GUIMARK3 BITMAP RESULT: #_RESULT_# +/- 1.1%</OutputTemplate> <LineHint>GUIMARK3 BITMAP</LineHint> <ResultScale>fps</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>GUIMARK3 VECTOR RESULT: #_RESULT_# +/- 1.1%</OutputTemplate> <LineHint>GUIMARK3 VECTOR</LineHint> <ResultScale>fps</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>GUIMARK3 COMPUTE RESULT: #_RESULT_# +/- 1.1%</OutputTemplate> <LineHint>GUIMARK3 COMPUTE</LineHint> <ResultScale>fps</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Selenium</Title> <Description>This test profile uses the Selenium WebDriver for running various browser benchmarks in different available web browsers such as Mozilla Firefox and Google Chrome.</Description> <ResultScale>Score</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.38</Version> <SupportedPlatforms>Linux, Windows, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>python</ExternalDependencies> <RequiresDisplay>TRUE</RequiresDisplay> <RequiresInternet>TRUE</RequiresInternet> <EnvironmentSize>100</EnvironmentSize> <ProjectURL>https://www.selenium.dev/</ProjectURL> <RepositoryURL>https://github.com/SeleniumHQ/selenium</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>firefox, google-chrome</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Benchmark</DisplayName> <Identifier>benchmark</Identifier> <Menu> <Entry> <Name>ARES-6</Name> <Value>ares6</Value> </Entry> <Entry> <Name>Basemark</Name> <Value>basemark</Value> </Entry> <Entry> <Name>MotionMark</Name> <Value>motionmark</Value> </Entry> <Entry> <Name>Speedometer</Name> <Value>speedometer</Value> </Entry> <Entry> <Name>WebXPRT</Name> <Value>webxprt</Value> </Entry> <Entry> <Name>Octane</Name> <Value>octane</Value> </Entry> <Entry> <Name>Jetstream</Name> <Value>jetstream</Value> </Entry> <Entry> <Name>Jetstream 2</Name> <Value>jetstream2</Value> </Entry> <Entry> <Name>CanvasMark</Name> <Value>canvasmark</Value> </Entry> <Entry> <Name>StyleBench</Name> <Value>stylebench</Value> </Entry> <Entry> <Name>Maze Solver</Name> <Value>mazesolver</Value> </Entry> <Entry> <Name>PSPDFKit WASM</Name> <Value>pspdfkit</Value> </Entry> <Entry> <Name>WASM collisionDetection</Name> <Value>wasmcollision</Value> </Entry> <Entry> <Name>WASM imageConvolute</Name> <Value>wasmconvolute</Value> </Entry> <Entry> <Name>Kraken</Name> <Value>kraken</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Browser</DisplayName> <Identifier>browser</Identifier> <Menu> <Entry> <Name>Firefox</Name> <Value>Firefox</Value> </Entry> <Entry> <Name>Google Chrome</Name> <Value>Chrome</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>