PortValhalla/scripts/Windows/Scripts/BrowserAutomation.ps1

75 lines
2.1 KiB
PowerShell
Raw Normal View History

#!/bin/bash
. "$PSScriptRoot/Context.ps1";
if (-not ("OpenQA.Selenium.Firefox.FirefoxDriver" -as [type])) {
$zipFile = [System.IO.Compression.ZipFile]::OpenRead((Get-Package Selenium.WebDriver).Source);
$stream = [System.IO.MemoryStream]::new();
$reader = [System.IO.StreamReader]($zipFile.Entries[2]).Open();
$reader.BaseStream.CopyTo($stream);
[byte[]]$bytes = $stream.ToArray();
$reader.Close();
$zipFile.Dispose();
[System.Reflection.Assembly]::Load($bytes);
}
function Start-AutomatedDownload() {
param(
[Context] $context,
[string] $url,
2023-07-15 17:47:56 +00:00
[string] $buttonSelector,
[string] $outDir = $null
)
$tempDir = $context.GetTempDirectory();
$options = [OpenQA.Selenium.Firefox.FirefoxOptions]::new();
$options.SetPreference("browser.download.folderList", 2);
$options.SetPreference("browser.download.dir", $tempDir);
# $options.AddArgument("--headless");
2023-07-15 17:33:12 +00:00
$downloadChecker = {
param()
$files = Get-ChildItem $tempDir;
2023-07-15 17:41:43 +00:00
if ($(@($files)).Count -gt 0) {
foreach ($file in Get-ChildItem $tempDir) {
try {
$stream = [System.IO.File]::Open($file.FullName, [System.IO.FileMode]::Open, [System.IO.FileAccess]::ReadWrite, [System.IO.FileShare]::None);
if ($stream) {
$stream.Close();
}
2023-07-15 17:56:45 +00:00
}
catch {
return $true;
2023-07-15 17:33:12 +00:00
}
}
2023-07-15 17:56:45 +00:00
return $false;
} else {
2023-07-15 17:41:43 +00:00
return $true;
2023-07-15 17:33:12 +00:00
}
}
$browser = [OpenQA.Selenium.Firefox.FirefoxDriver]::new($options);
$browser.Navigate().GoToUrl($url);
2023-07-15 17:19:42 +00:00
$browser.FindElement([OpenQA.Selenium.By]::CssSelector("$buttonSelector")).Click();
2023-07-15 17:33:12 +00:00
while ($downloadChecker.Invoke()) {
Write-Information "Waiting for download to finish...";
Start-Sleep 1;
}
2023-07-15 17:47:56 +00:00
$file = Get-ChildItem $tempDir;
if (-not $outDir) {
$outDir = ".";
}
$result = Move-Item $file $outDir -PassThru;
$browser.Quit();
2023-07-15 17:53:20 +00:00
Remove-Item -Recurse $tempDir;
2023-07-15 17:47:56 +00:00
return $result;
}