Great Serg
Great Serg

Reputation: 71

How to install Selenium PowerShell eXtensions?

I'm trying to make a PowerShell script( here is the question about it )

somebody answer me, that I need to install Selenium PowerShell eXtensions

but I doesn't find the manual - "how to install a Selenium PowerShell eXtensions", Somebody please help!

Upvotes: 0

Views: 2831

Answers (1)

henrycarteruk
henrycarteruk

Reputation: 13227

There isn't an install guide specifically for Selenium as it's just a standard powershell module and they are all imported with the same command.

Download the zip from codeplex, extract it and then import the module (substituting the path for yours):

If you call the folder SePSX you can use this:

Import-Module "C:\folder\SePSX"

Any other name use this:

Import-Module "C:\folder\Selenium\SePSX.dll

Upvotes: 1

Related Questions