Automation.Web.Core
2.8.5-preview.269
See the version list below for details.
dotnet add package Automation.Web.Core --version 2.8.5-preview.269
NuGet\Install-Package Automation.Web.Core -Version 2.8.5-preview.269
<PackageReference Include="Automation.Web.Core" Version="2.8.5-preview.269" />
paket add Automation.Web.Core --version 2.8.5-preview.269
#r "nuget: Automation.Web.Core, 2.8.5-preview.269"
// Install Automation.Web.Core as a Cake Addin #addin nuget:?package=Automation.Web.Core&version=2.8.5-preview.269&prerelease // Install Automation.Web.Core as a Cake Tool #tool nuget:?package=Automation.Web.Core&version=2.8.5-preview.269&prerelease
Introduction
This is the web automation test library that can help use early to create an automation web test on many browsers and many OS without setup the corresponding webdriver such as ChromeDriver, FirefoxDriver or IEDriver. This library is still developing, so please keep looking. Thanks!
Releate notes
v1.x.x → v2.0.x
- Migrate to Selenium.WebDriver 4.7.x
- Integrate with Appium.WebDriver 5.x.x
- Support mobile web browsers testing on Android/iOS
- Support screen (video) recording function:
- Added the StartScreenRecording() function into IBrowser
- Added the StopScreenRecording() function into IBrowser
v2.x.x → v2.3.0
- Fix iOSBrowser to run on real device, recording screen on iOS real device
- Support Appium 2.0
- Add
DefaultBrowser
into thebrowsers.json
- Appium server is now configured at the
RemoteServer
instead ofServerUrl
v2.3.x → v2.4.x
- Add
ForceUsingDefaultBrowser
into browsers.json to force usingDefaultBrowser
in-case don't want to useExecutableBrowsers
, then only executeDefaultBrowser
instead.
- Add
v2.4.x → v2.5.x
- Add
DownloadDirectory
for IBrowser - Enable downloading in headless mode
- Add
v2.5.x → v2.6.x
- Support config
ChromeDriverExecutable
for appium chrome driver - Update
appium.webdriver
package - Add new function
ClearText
for IBrowser
- Support config
v2.6.x → v2.7.x
- Upgrade Appium.WebDriver version to "5.0.0-rc.1"
- Upgrade Selenium.WebDriver version to "4.14.1"
v2.7.x → v2.8.x
- Fix ChromeDriver issue when Chrome version > 114
Getting Started
- Create your test project.
- Install any unit test framework that you like. We will use NUnit in this tutorial.
- Installation the nuget package:
Automation.Web.Core
- Create a
browsers.json
file as below in your test project and set it as aContent
in theBuild action
andCopy to Output Directory
{
"ExecutableBrowsers": [ "Chrome", "Firefox" ],
"DefaultBrowser": "Chrome",
"ForceUsingDefaultBrowser": false,
"Browsers": [
{
"Id": "Android",
"Browser": "Chrome",
"Platform": "Android",
"PlatformVersion": "11.0",
"DeviceName": "Pixel5",
"AutomationName": "UIAutomator2",
"ServerUrl": "http://127.0.0.1:4723",
"IsHeadless": false,
"LogLevel": "Debug",
"Arguments": [],
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 3000
},
{
"Id": "Chrome",
"Browser": "Chrome",
"Version": "Latest",
"IsHeadless": false,
"LogLevel": "Debug",
"Arguments": [],
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 30
},
{
"Id": "Firefox",
"Browser": "Firefox",
"Version": "Latest",
"IsHeadless": false,
"LogLevel": "Debug",
"Arguments": [],
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 30
},
{
"Id": "InternetExplorer",
"Browser": "InternetExplorer",
"Platform": "X32",
"LogLevel": "Debug",
"Arguments": [],
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 30
},
{
"Id": "Edge",
"Browser": "Edge",
"Version": "Latest",
"LogLevel": "Debug",
"Arguments": [],
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 30
},
{
"Id": "Safari",
"Browser": "Safari",
"LogLevel": "Debug",
"ImplicitTimeoutInSecond": 30,
"DefaultWaitTimeInSecond": 30
}
]
}
This configuration is based on your browser version & your expection browser behaviours.
- Add your test code
[TestFixtureSource(typeof(ExecutableBrowserSourceConfig))]
public class BrowserTests
{
private IBrowser browser;
private readonly string browserId;
public BrowserTests(string browserId)
{
this.browserId = browserId;
}
[SetUp]
public void SetUp()
{
browser = BrowserFactory.CreateBrowser(browserId);
//Start screen recording for evidence
//browser.StartScreenRecording();
}
[Test]
public void Test()
{
browser.Navigation.GoToUrl("https://www.google.com");
Assert.True(browser.Title.Contains("Google"));
}
[TearDown]
public virtual void TearDown()
{
//Take screenshot
string filePath = browser.TakeAndSaveScreenshot();
TestContext.AddTestAttachment(filePath);
//Stop video recording
//browser.StopScreenRecording();
//Dispose the browser
browser.Dispose();
}
}
*Note:
- The StartScreenRecording
& StopScreenRecording
functions only work when run web test on mobile device.
- To let they work also in Windows OS, please add nuget package Automation.Web.Core.Forms
https://www.nuget.org/packages/Automation.Web.Core.Forms/
Run your test cases and see the magic^^
Browser configuration details 7.1 Desktop web testing
- Currently, we support Chrome, Firefox, Safari, Edge, InternetExplorer.
7.2 Mobile web testing
- It's required to have an Appium server to run the Mobile web testing. So, please don't forget to set the
ServerUrl
to the Appium server such as http://127.0.0.1:4723.
Recommend
There is another nuget package Automation.Web.NUnit
that applying the Automation.Web.Core
with the NUnit
framework. It also supports to integrate with Specflow for BDD.
So, let try with it https://www.nuget.org/packages/Automation.Web.NUnit
APIs document
- IBrowser APIs
- The IBrowser is wrapper almost APIs from IWebDriver
- Highlight APIs:
- IBrowser.TakeAndSaveScreenshot(fileName) : take screenshot and save to local disk then return the file path.
- IBrowser.StartScreenRecording() : start screen recording video. This api supports mobile web, and windows web only.
- IBrowser.StopScreenRecording() : stop screen recording video and return the file path. This api supports mobile web, and windows web only.
browsers.json configuration file
DefaultBrowser
: default browserIdExecutableBrowsers
: a list of browserId which will be executed parallelForceUsingDefaultBrowser
: force to useDefaultBrowser
setting evenExecutableBrowsers
is being configured.
Contribute
Will update later.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Appium.WebDriver (>= 5.0.0-rc.1)
- DotNetSeleniumExtras.WaitHelpers (>= 3.11.0)
- Magick.NET-Q8-AnyCPU (>= 7.17.0)
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 7.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 7.0.0)
- Microsoft.Extensions.Configuration.Json (>= 7.0.0)
- Noksa.WebDriver.ScreenshotsExtensions (>= 0.1.5.4)
- Selenium.Support (>= 4.15.0)
- Selenium.WebDriver (>= 4.15.0)
- System.Drawing.Common (>= 7.0.0)
- WebDriverManager (>= 2.17.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Automation.Web.Core:
Package | Downloads |
---|---|
Automation.Web.NUnit
Package Description |
|
Automation.Web.Core.Forms
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.13.0 | 34 | 11/5/2024 |
2.12.0-preview.296 | 39 | 10/30/2024 |
2.12.0-preview.295 | 38 | 10/25/2024 |
2.11.2 | 52 | 10/21/2024 |
2.11.1 | 102 | 9/9/2024 |
2.11.0 | 89 | 4/29/2024 |
2.11.0-preview.290 | 200 | 12/13/2023 |
2.11.0-preview.289 | 81 | 12/13/2023 |
2.11.0-preview.288 | 73 | 12/13/2023 |
2.10.0 | 230 | 12/5/2023 |
2.10.0-preview.284 | 120 | 11/21/2023 |
2.10.0-preview.283 | 83 | 11/21/2023 |
2.9.0-preview.281 | 83 | 11/17/2023 |
2.9.0-preview.280 | 70 | 11/16/2023 |
2.9.0-preview.277 | 67 | 11/14/2023 |
2.9.0-preview.275 | 102 | 11/14/2023 |
2.8.6 | 145 | 11/6/2023 |
2.8.6-preview.272 | 80 | 11/6/2023 |
2.8.6-preview.271 | 70 | 11/6/2023 |
2.8.5 | 82 | 11/6/2023 |
2.8.5-preview.269 | 71 | 11/6/2023 |
2.8.5-preview.268 | 81 | 11/6/2023 |
2.8.3-preview.263 | 91 | 11/2/2023 |
2.8.1 | 241 | 11/2/2023 |
2.8.1-preview.258 | 90 | 11/2/2023 |
2.8.1-preview.253 | 103 | 10/31/2023 |
2.8.0-preview.252 | 94 | 10/23/2023 |
2.8.0-preview.251 | 78 | 10/23/2023 |
2.7.1-preview.250 | 75 | 10/23/2023 |
2.7.0 | 567 | 8/21/2023 |
2.6.1 | 642 | 8/1/2023 |
2.6.1-preview.246 | 89 | 7/31/2023 |
2.6.1-preview.245 | 88 | 7/31/2023 |
2.5.1 | 673 | 6/23/2023 |
2.5.1-preview.240 | 74 | 6/22/2023 |
2.5.0-preview.238 | 93 | 6/22/2023 |
2.5.0-preview.237 | 83 | 6/22/2023 |
2.5.0-preview.236 | 79 | 6/22/2023 |
2.5.0-preview.235 | 101 | 6/22/2023 |
2.4.0 | 795 | 6/21/2023 |
2.4.0-preview.228 | 74 | 6/21/2023 |
2.4.0-preview.226 | 76 | 6/21/2023 |
2.3.3-preview.225 | 79 | 6/20/2023 |
2.3.3-preview.223 | 75 | 6/20/2023 |
2.3.2-preview.222 | 73 | 6/19/2023 |
2.3.1 | 725 | 6/19/2023 |
2.3.1-preview.215 | 74 | 6/19/2023 |
2.3.0 | 643 | 6/19/2023 |
2.2.0-preview.211 | 89 | 6/7/2023 |
2.1.0-preview.186 | 401 | 1/6/2023 |
2.1.0-preview.184 | 100 | 12/27/2022 |
2.1.0-preview.183 | 102 | 12/26/2022 |
2.1.0-preview.182 | 112 | 12/26/2022 |
2.1.0-preview.181 | 93 | 12/22/2022 |
2.1.0-preview.180 | 100 | 12/22/2022 |
2.0.1 | 801 | 12/21/2022 |
2.0.0 | 999 | 12/21/2022 |
2.0.0-preview.173 | 97 | 12/21/2022 |
2.0.0-preview.171 | 96 | 12/21/2022 |
2.0.0-preview.169 | 92 | 12/21/2022 |
2.0.0-preview.165 | 92 | 12/19/2022 |
2.0.0-preview.161 | 99 | 12/14/2022 |
2.0.0-preview.156 | 96 | 12/14/2022 |
1.0.4-preview.131 | 284 | 5/27/2020 |
1.0.3 | 1,295 | 5/26/2020 |
1.0.3-preview.120 | 240 | 5/26/2020 |
1.0.2 | 1,124 | 5/25/2020 |
1.0.2-preview.116 | 299 | 5/25/2020 |
1.0.2-preview.114 | 304 | 5/25/2020 |
1.0.2-preview.112 | 238 | 5/22/2020 |
1.0.1 | 1,053 | 5/21/2020 |
1.0.0 | 1,302 | 5/18/2020 |