From 400223880f3a77327e5b25904a910806fbfee93e Mon Sep 17 00:00:00 2001 From: Banee Ishaque K Date: Thu, 16 Mar 2023 12:44:38 +0530 Subject: [PATCH] selenium-manager: Add version 1.0.0-M3 (#4518) * selenium-manager : Add Version 1.0.0-M3 * Update selenium-manager.json * Update selenium-manager.json * Update selenium-manager.json --------- Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> --- bucket/selenium-manager.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bucket/selenium-manager.json diff --git a/bucket/selenium-manager.json b/bucket/selenium-manager.json new file mode 100644 index 0000000000..5e63aeb5ff --- /dev/null +++ b/bucket/selenium-manager.json @@ -0,0 +1,30 @@ +{ + "version": "1.0.0-M3", + "description": "Selenium Manager is a command-line tool developed in Rust to allow cross platform execution.", + "homepage": "https://www.selenium.dev/blog/2022/introducing-selenium-manager", + "license": "Apache-2.0", + "architecture": { + "64bit": { + "url": "https://github.com/SeleniumHQ/selenium/raw/trunk/common/manager/windows/selenium-manager.exe", + "hash": "a1cef0ed9398e7f7e6cef1cb637790a97dc3f0a9d233c1bc5804e1e45b50f959" + } + }, + "bin": "selenium-manager.exe", + "checkver": { + "script": [ + "$executable = \"selenium-manager.exe\"", + "Invoke-WebRequest -URI \"https://github.com/SeleniumHQ/selenium/raw/trunk/common/manager/windows/$executable\" -OutFile $executable", + "[array] $cmdOutput = Invoke-Expression \".\\$executable --version\"", + "Remove-Item $executable", + "$cmdOutput" + ], + "regex": "selenium-manager (.+)" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/SeleniumHQ/selenium/raw/trunk/common/manager/windows/selenium-manager.exe" + } + } + } +}