Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Programmatically detect the version of the Chrome web browser installed on the PC. | |
| # Compatible with Windows, Mac, Linux. | |
| # Written in Python. | |
| # Uses native OS detection. Does not require Selenium nor the Chrome web driver. | |
| # | |
| import os | |
| import re | |
| from sys import platform |