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.14
system/selenium-1.0.14
- 12 December 2019 -
Update for Chrome 79 driver support.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/selenium-scripts-8.zip</URL> <MD5>88935d3f8be09c4be3d9da3b298ae647</MD5> <SHA256>64e029f4ed278e914bb2f6a56dcf7a880d5c8cd2367b5e8f76f9fa6e0affaca3</SHA256> <FileName>selenium-scripts-8.zip</FileName> <FileSize>12847</FileSize> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/geckodriver-v0.24.0-linux64.tar.gz</URL> <MD5>7552b85e43973c84763e212af7cca566</MD5> <SHA256>03be3d3b16b57e0f3e7e8ba7c1e4bf090620c147e6804f6c6f3203864f5e3784</SHA256> <FileName>geckodriver-v0.24.0-linux64.tar.gz</FileName> <FileSize>2896664</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-macos.tar.gz</URL> <MD5>e5e90dfee761975ca4cb1deef5733702</MD5> <SHA256>6553195cd6f449e2b90b0bdfe174c6c3337ed571ac6d57a0db028ac5f306cca9</SHA256> <FileName>geckodriver-v0.24.0-macos.tar.gz</FileName> <FileSize>2099879</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/geckodriver-v0.24.0-win64.zip</URL> <MD5>83c1f76dfba615b8ddf29b2c4d157a2b</MD5> <SHA256>55089b041e60295d9cd468baf78e1039fd9a38f6cd4d0166b9221626970b276e</SHA256> <FileName>geckodriver-v0.24.0-win64.zip</FileName> <FileSize>4673848</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/79.0.3945.36/chromedriver_mac64.zip</URL> <MD5>57d2a9629298aa6dc2d759fe09da5d13</MD5> <SHA256>c3bbd1139ace81268fe6d2e74fc815a2fc86d95b3c617eca4a70c92d7cba1b1c</SHA256> <FileName>chromedriver_mac64_v79.zip</FileName> <FileSize>6908371</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/79.0.3945.36/chromedriver_linux64.zip</URL> <MD5>77e6b631478c63c2df5809822a0af916</MD5> <SHA256>b23389857af0a0679f5344d20eb0037bc29a90866e86710f83e8cae0c1681bcb</SHA256> <FileName>chromedriver_linux64_v79.zip</FileName> <FileSize>4875160</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://chromedriver.storage.googleapis.com/79.0.3945.36/chromedriver_win32.zip</URL> <MD5>9665be96d739035efdf91684f406fdcf</MD5> <SHA256>644add35718e263eda78d38ed18b6de48e54300ebe3a1c7e005f395c58482c6d</SHA256> <FileName>chromedriver_win32_v79.zip</FileName> <FileSize>4263308</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 unzip -o selenium-scripts-8.zip # Drivers tar -xf geckodriver-v0.24.0-linux64.tar.gz unzip -o chromedriver_linux64_v79.zip # 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 unzip -o selenium-scripts-8.zip # Drivers tar -xf geckodriver-v0.24.0-macos.tar.gz unzip -o chromedriver_mac64_v79.zip # 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-8.zip # Drivers unzip -o geckodriver-v0.24.0-win64.zip unzip -o chromedriver_win32_v79.zip # Script echo "#!/bin/sh cmd /c \"\$DEBUG_REAL_HOME\AppData\Local\Programs\Python\Python37\Scripts\pip3.exe\" install --user selenium 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 v9.2.1--> <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> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.1--> <PhoronixTestSuite> <TestInformation> <Title>Selenium</Title> <Description>This test profile uses the Selenium WebDriver for running various browser benchmarks in different available web browsers.</Description> <ResultScale>Score</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.14</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.seleniumhq.org/</ProjectURL> <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> </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>