English 中文(简体)
Unable to Setup Edge browser through github actions
原标题:

I have an Selenium Automation project locally. As per project requirement I have to run the selenium project into Linux host machine using github actions for that I was trying to install the Edge browser as the host doesn t contains any browser.

Here s the Actions Workflow Code I used.

steps:
  - uses: browser-actions/setup-edge@v1
  - name: Print Edge version
    run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersion

And the Error I m facing

Run browser-actions/setup-edge@v1

Setup Edge stable
Attempting to download Edge stable...
Acquiring stable (115.0.1901.183) from https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_115.0.1901.183-1_amd64.deb
unable to get local issuer certificate
Waiting 13 seconds before trying again
unable to get local issuer certificate
Waiting 15 seconds before trying again
Error: unable to get local issuer certificate
问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签