Selenium.StandardControls 0.59.0

dotnet add package Selenium.StandardControls --version 0.59.0                
NuGet\Install-Package Selenium.StandardControls -Version 0.59.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Selenium.StandardControls" Version="0.59.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Selenium.StandardControls --version 0.59.0                
#r "nuget: Selenium.StandardControls, 0.59.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Selenium.StandardControls as a Cake Addin
#addin nuget:?package=Selenium.StandardControls&version=0.59.0

// Install Selenium.StandardControls as a Cake Tool
#tool nuget:?package=Selenium.StandardControls&version=0.59.0                

Selenium.StandardControls

Created by Ishikawa-Tatsuya Matsui-Bin
NuGet Version and Downloads count

What is Selenium.StandardControls?

  • Wrapped test library selenium in C#
  • You can use the HTML standard control to simple image

Sample Code

using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium.Firefox;

namespace Test
{
    [TestClass]
    public class TestControls
    {
        FirefoxDriver _driver;
        Page_Controls _page;

        [TestInitialize]
        public void TestInitialize()
        {
            _driver = new FirefoxDriver();
            _page = Page_Controls.Open(_driver);
        }

        [TestCleanup]
        public void TestCleanup()
        {
            _driver.Dispose();
        }

        [TestMethod]
        public void TextBox()
        {
            _page.TextBox.Edit("abc");
            _page.TextBox.Text.Is("abc");
        }
    }
}

Corresponding Control

  • Anchor
Anchor.Text.Is("codeer");
Anchor.Invoke();
  • Button
Button.Invoke();
  • CheckBox
CheckBox.Edit(true);
CheckBox.Checked.IsTrue();
CheckBox.Edit(false);
CheckBox.Checked.IsFalse();
  • DropDownList
DropDown.Edit("Apple");
DropDown.SelectedIndex.Is(0);
DropDown.Edit("Orange");
DropDown.SelectedIndex.Is(1);
DropDown.Edit(3);
DropDown.SelectedIndex.Is(3);
DropDown.Text.Is("Pinapple");
  • Label
Label.Text.Is("Title Controls");
  • RadioButton
RadioButton.Checked.IsTrue();
RadioButton.Edit();
RadioButton.Checked.IsFalse();
  • TextArea
TextArea.Edit("abc");
TextArea.Text.Is("abc");
  • TextBox
TextBox.Edit("abc");
TextBox.Text.Is("abc");
TextBox.Show();
TextBox.Focus();
TextBox.Blur();

About Info

Example:

TextBox.Info.FontBold.IsTrue();
TextBox.Info.FontItalic.IsTrue();
TextBox.Info.TextLineThrough.IsTrue();
TextBox.Info.Class.Is("exampleTrue");
TextBox.Info.ImeMode.Is("auto");
TextBox.Info.Color.Is("rgba(153, 204, 0, 1)");
TextBox.Info.BackGroundColor.Is("rgba(0, 0, 0, 1)");
TextBox.Info.TextAlign.Is("left");
TextBox.Info.FontSize.Is("19.2px");
TextBox.Info.Font.Is("sans-serif");
TextBox.Info.Width.Is("1388.77px");
TextBox.Info.Height.Is("19.8333px");

Info Property

  • Id
  • InnerHtml
  • InnerText
  • Text
  • Value
  • Class
  • Width
  • Height
  • FontSize
  • Font
  • FontBold
  • FontItalic
  • TextUnderline
  • TextLineThrough
  • Color
  • BackGroundColor
  • BackGroundImage
  • TabIndex
  • ImeMode
  • MaxLength
  • TextAlign

About Wait

Example: After editing TextBox, wait until you see again TextBox

TextBox.Wait = () =>
{
    while (true)
    {
        try
        {
          TextBox.Show();
            break;
        }
        catch { }
        Thread.Sleep(100);
    }
};
TextBox.Edit("abc");
//Waiting for the Show
TextBox.Text.Is("abc");

Target Dirver

  • AnchorDriver
  • ButtonDriver
  • CheckBoxDriver
  • DropDownListDriver
  • RadioButtonDriver
  • TextBoxDriver

Author Info

Ishikawa-Tatsuya & Matsui-Bin is a software developer in Japan at Codeer, Inc.
Ishikawa-Tatsuya & Matsui-Bin is awarding Microsoft MVP.

License

This library is under the Apache License.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Selenium.StandardControls:

Package Downloads
Selenium.WebForms.Infragistics

Operate standard web controls by selenium.

Selenium.WebForms

Operate standard web controls by selenium.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.59.0 35 7/24/2024
0.56.0 73 7/22/2024
0.55.0 254 6/27/2023
0.54.0 794 6/10/2022
0.53.0 522 3/9/2022
0.52.0 484 3/1/2022
0.51.0 564 11/1/2021
0.50.0 504 7/15/2021
0.49.0 368 6/28/2021
0.48.0 527 5/18/2021
0.46.0 394 5/14/2021
0.45.0 401 5/12/2021
0.44.1 407 5/6/2021
0.44.0 456 12/29/2020
0.43.0 495 12/15/2020
0.42.0 501 11/24/2020
0.41.0 556 11/9/2020
0.40.0 586 11/8/2020
0.33.0 468 10/29/2020
0.32.0 502 10/28/2020
0.30.0 447 10/26/2020
0.29.0 470 10/25/2020
0.27.0 480 10/23/2020
0.26.0 510 10/23/2020
0.25.0 539 10/23/2020
0.24.0 489 10/9/2020
0.22.0 462 10/8/2020
0.21.0 545 10/2/2020
0.20.0 521 8/16/2020
0.16.0 562 8/15/2020
0.15.0 575 8/9/2020
0.14.0 467 8/4/2020
0.12.0 506 6/11/2020
0.11.0 470 6/3/2020
0.10.0 528 6/3/2020
0.9.0 557 6/1/2020
0.8.0 553 6/1/2020
0.7.0 749 5/26/2019
0.6.0 603 5/26/2019
0.5.0 609 5/26/2019
0.3.0 608 5/26/2019
0.2.0 603 5/22/2019
0.1.0 634 5/22/2019
0.0.26 1,717 6/2/2016
0.0.25 1,567 5/21/2016
0.0.24 1,164 5/20/2016
0.0.23 5,707 5/9/2016
0.0.22 1,323 5/9/2016
0.0.21 1,341 5/8/2016
0.0.20 953 5/8/2016
0.0.18 998 5/7/2016
0.0.17 976 5/6/2016
0.0.16 2,128 4/25/2016
0.0.15 1,872 4/16/2016
0.0.13 994 4/13/2016
0.0.12 991 4/12/2016
0.0.11 965 4/12/2016
0.0.10 2,063 4/10/2016
0.0.9 1,445 4/9/2016
0.0.8 1,667 4/2/2016
0.0.6 2,756 3/21/2016
0.0.5 2,590 3/18/2016
0.0.3 1,528 3/18/2016
0.0.2 1,520 3/14/2016

# Breaking changes
- TitleComapre -> TitleCompare
- UrlComapre -> UrlCompare