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.30
system/selenium-1.0.30
- 21 June 2022 -
Update against Chrome 103 driver compatibility.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.3--> <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.31.0/geckodriver-v0.31.0-linux64.tar.gz</URL> <MD5>eac7c4af356668ab9acb7d16c843c62f</MD5> <SHA256>7fdd8007d22a6f44caa6929a3d74bbd6a00984d88be50255153671bd201e5493</SHA256> <FileName>geckodriver-v0.31.0-linux64.tar.gz</FileName> <FileSize>2715370</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-macos.tar.gz</URL> <MD5>a1c5e8aeb5cffc3d735e58d48ecfb365</MD5> <SHA256>4da5c6effe987e0c9049c69c7018e70a9d79f3c6119657def2cc0c3419f885e6</SHA256> <FileName>geckodriver-v0.31.0-macos.tar.gz</FileName> <FileSize>1904079</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-win64.zip</URL> <MD5>2ccb4756b12280dfd1d1a38bbe2be05c</MD5> <SHA256>d4bbec9457dc1130f9d580de012d17dbeadbb378d5c3e37419e6ad8c1c958cbb</SHA256> <FileName>geckodriver-v0.31.0-win64.zip</FileName> <FileSize>1486138</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/103.0.5060.24/chromedriver_mac64.zip</URL> <MD5>94c1c340d0e0d34b35fc7449fc9e70dd</MD5> <SHA256>95a31a0c3502514debba36c5a10e866898cf56551fbcb5a829e148bbb788aae5</SHA256> <FileName>chromedriver_mac64_v103.zip</FileName> <FileSize>8375560</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/103.0.5060.24/chromedriver_linux64.zip</URL> <MD5>3fec9d93f18404edcf37eb4d974be5e9</MD5> <SHA256>b983b66144f46e5f68c204e1bdcc5433bf9a8863109e9c9b2261ac966cdada6a</SHA256> <FileName>chromedriver_linux64_v103.zip</FileName> <FileSize>6984463</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/103.0.5060.24/chromedriver_win32.zip</URL> <MD5>69131a4edf9e47786413dd6623232352</MD5> <SHA256>0a2be04d6b0af486ca0e199f3e5cdc201785f67fe59e055a6d6815191b1a9727</SHA256> <FileName>chromedriver_win32_v103.zip</FileName> <FileSize>6401819</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.31.0-linux64.tar.gz unzip -o chromedriver_linux64_v103.zip 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.31.0-macos.tar.gz unzip -o chromedriver_mac64_v103.zip 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.31.0-win64.zip unzip -o chromedriver_win32_v103.zip 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.3--> <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.3--> <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.30</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>