Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

LeanFT.Selenium

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leanft.selenium - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
content/selenium-manager/linux/selenium-manager

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

+197
<?xml version="1.0"?>
<doc>
<assembly>
<name>LeanFTForSelenium</name>
</assembly>
<members>
<member name="T:LeanFT.Selenium.By">
<summary>
Contains all LeanFT for Selenium By methods for locating elements.
</summary>
</member>
<member name="M:LeanFT.Selenium.By.Name(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified name, described using a regular expression.
</summary>
<param name="name">The name of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified name.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Id(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified ID, described using a regular expression.
</summary>
<param name="id">The ID of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified ID.</returns>
</member>
<member name="M:LeanFT.Selenium.By.ClassName(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified className, described using a regular expression.
</summary>
<param name="className">The className of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified className.</returns>
</member>
<member name="M:LeanFT.Selenium.By.LinkText(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified linkText, described using a regular expression.
</summary>
<param name="linkText">The linkText of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified linkText.</returns>
</member>
<member name="M:LeanFT.Selenium.By.TagName(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified tagName, described using a regular expression.
</summary>
<param name="tagName">The tagName of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified tagName.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Role(System.String)">
<summary>
Returns a locator that locates elements by the specified role.
</summary>
<param name="role">The role of the elements.</param>
<returns>A locator that locates elements with the specified role.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Role(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified role, described using a regular expression.
</summary>
<param name="role">The role of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified role.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Type(System.String)">
<summary>
Returns a locator that locates elements by the provided type parameter.
</summary>
<param name="type">The type of the elements.</param>
<returns>A locator that locates elements with the specified type.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Type(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified type, described using a regular expression.
</summary>
<param name="type">The type of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified type.</returns>
</member>
<member name="M:LeanFT.Selenium.By.VisibleText(System.String)">
<summary>
Returns a locator that locates elements by the provided visibleText parameter.
</summary>
<param name="visibleText">The visible text of the elements.</param>
<returns>A locator that locates elements whose visible text matches the specified text.</returns>
</member>
<member name="M:LeanFT.Selenium.By.VisibleText(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates element by the specified visibleText, described using a regular expression.
</summary>
<param name="visibleText">The visible text of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements whose visible text matches the specified text.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Visible(System.Boolean)">
<summary>
Returns a locator that locates elements that are either visible or not, depending on the parameter passed.
</summary>
<param name="visible">Whether the elements are visible.</param>
<returns>A locator that locates elements that are either visible or not, depending on the parameter passed.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attributes(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns a locator that locates elements according to one or more attributes. You can also use regular expressions.
</summary>
<param name="attributes">Dictionary of attributes.</param>
<returns>A locator that locates elements that have the specified attribute values.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attribute(System.String,System.String)">
<summary>
Returns a locator that locates elements according to a single attribute.
</summary>
<param name="name">The name of the attribute.</param>
<param name="value">The value of the attribute.</param>
<returns>A locator that locates elements that have the specified attribute value.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attribute(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements according to a single attribute, described using a regular expression.
</summary>
<param name="name">The name of the attribute.</param>
<param name="value">The Pattern of the attribute.</param>
<returns>A locator that locates elements whose attribute value matches the specified pattern.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Styles(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns a locator that locates elements according to one or more styles. You can also use regular expressions.
</summary>
<param name="styles">Dictionary of styles.</param>
<returns>A locator that locates elements with the specified styles.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Style(System.String,System.String)">
<summary>
Returns a locator that locates elements according to a single style.
</summary>
<param name="name">The name of the style.</param>
<param name="value">The value of the style.</param>
<returns>A locator that locates elements with the specified style.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Style(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements according to a single style, described using a regular expression.
</summary>
<param name="name">The name of the style.</param>
<param name="value">The Pattern of the style.</param>
<returns>A locator that locates elements whose style matches the specified pattern.</returns>
</member>
<member name="T:LeanFT.Selenium.ByAny">
<summary>
A locator that locates elements that match one or more of the specified locators (attributes, tags, styles etc.).
</summary>
</member>
<member name="M:LeanFT.Selenium.ByAny.#ctor(OpenQA.Selenium.By[])">
<summary>
A constructor for the ByAny locator.
</summary>
<param name="bys">The locators (Bys) by which the elements should be identified.</param>
</member>
<member name="T:LeanFT.Selenium.ByEach">
<summary>
A locator that locates elements that match all specified locators (attributes, tags, styles etc.).
</summary>
</member>
<member name="M:LeanFT.Selenium.ByEach.#ctor(OpenQA.Selenium.By[])">
<summary>
A constructor for the ByEach locator.
</summary>
<param name="bys">The locators (Bys) by which the elements should be identified.</param>
</member>
<member name="T:LeanFT.Selenium.Utils">
<summary>
LeanFT for Selenium utilities.
</summary>
</member>
<member name="M:LeanFT.Selenium.Utils.GetSnapshot(OpenQA.Selenium.IWebElement)">
<summary>
Returns a snapshot (image) of the selenium element.
</summary>
<param name="element">The element to retrieve a snapshot for.</param>
<returns>A snapshot of the element.</returns>
</member>
<member name="M:LeanFT.Selenium.Utils.Highlight(OpenQA.Selenium.IWebElement)">
<summary>
Highlights the selenium element in the browser.
</summary>
<param name="element">The web element to highlight.</param>
</member>
<member name="M:LeanFT.Selenium.Utils.Highlight(OpenQA.Selenium.IWebElement,System.Int32)">
<summary>
Highlights the selenium elements in the browser for time milliseconds.
</summary>
<param name="element">The web element to highlight.</param>
<param name="time">The time (in milliseconds) that the element is highlighted. In case of a negative number, the method throws an ArgumentException.
If time is less than 150, the element is not highlighted.</param>
</member>
<member name="M:LeanFT.Selenium.Utils.ScrollIntoView(OpenQA.Selenium.IWebElement)">
<summary>
Scrolls the page to make the web element visible.
</summary>
<param name="element">The web element to scroll to.</param>
</member>
</members>
</doc>

Sorry, the diff of this file is not supported yet

+3
-0

@@ -8,3 +8,6 @@ <?xml version="1.0" encoding="utf-8"?>

<Default Extension="xml" ContentType="application/octet" />
<Default Extension="exe" ContentType="application/octet" />
<Default Extension="nuspec" ContentType="application/octet" />
<Override PartName="/content/selenium-manager/linux/selenium-manager" ContentType="application/octet" />
<Override PartName="/content/selenium-manager/macos/selenium-manager" ContentType="application/octet" />
</Types>
+7
-6

@@ -5,7 +5,6 @@ <?xml version="1.0" encoding="utf-8"?>

<id>LeanFT.Selenium</id>
<version>1.0.1</version>
<version>1.0.2</version>
<title>LeanFT for Selenium DotNet (C#) SDK</title>
<authors>MicroFocus</authors>
<owners>MicroFocus</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<authors>OpenText</authors>
<owners>OpenText</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>

@@ -20,6 +19,8 @@ <projectUrl>https://github.com/MicroFocus/leanft-selenium-dotnet-sdk</projectUrl>

<dependencies>
<dependency id="Selenium.WebDriver" version="2.53.1" />
<dependency id="Selenium.Support" version="2.53.1" />
<group targetFramework=".NETFramework4.6.1">
<dependency id="Selenium.WebDriver" version="2.53.1" />
<dependency id="Selenium.Support" version="2.53.1" />
</group>
</dependencies>
</metadata>
</package>

Sorry, the diff of this file is too big to display

<?xml version="1.0"?>
<doc>
<assembly>
<name>LeanFTForSelenium</name>
</assembly>
<members>
<member name="T:LeanFT.Selenium.By">
<summary>
Contains all LeanFT for Selenium By methods for locating elements.
</summary>
</member>
<member name="M:LeanFT.Selenium.By.Name(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified name, described using a regular expression.
</summary>
<param name="name">The name of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified name.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Id(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified ID, described using a regular expression.
</summary>
<param name="id">The ID of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified ID.</returns>
</member>
<member name="M:LeanFT.Selenium.By.ClassName(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified className, described using a regular expression.
</summary>
<param name="className">The className of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified className.</returns>
</member>
<member name="M:LeanFT.Selenium.By.LinkText(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified linkText, described using a regular expression.
</summary>
<param name="linkText">The linkText of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified linkText.</returns>
</member>
<member name="M:LeanFT.Selenium.By.TagName(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified tagName, described using a regular expression.
</summary>
<param name="tagName">The tagName of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified tagName.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Role(System.String)">
<summary>
Returns a locator that locates elements by the specified role.
</summary>
<param name="role">The role of the elements.</param>
<returns>A locator that locates elements with the specified role.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Role(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified role, described using a regular expression.
</summary>
<param name="role">The role of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified role.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Type(System.String)">
<summary>
Returns a locator that locates elements by the provided type parameter.
</summary>
<param name="type">The type of the elements.</param>
<returns>A locator that locates elements with the specified type.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Type(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements by the specified type, described using a regular expression.
</summary>
<param name="type">The type of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements with the specified type.</returns>
</member>
<member name="M:LeanFT.Selenium.By.VisibleText(System.String)">
<summary>
Returns a locator that locates elements by the provided visibleText parameter.
</summary>
<param name="visibleText">The visible text of the elements.</param>
<returns>A locator that locates elements whose visible text matches the specified text.</returns>
</member>
<member name="M:LeanFT.Selenium.By.VisibleText(System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates element by the specified visibleText, described using a regular expression.
</summary>
<param name="visibleText">The visible text of the elements in the form of a regular expression.</param>
<returns>A locator that locates elements whose visible text matches the specified text.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Visible(System.Boolean)">
<summary>
Returns a locator that locates elements that are either visible or not, depending on the parameter passed.
</summary>
<param name="visible">Whether the elements are visible.</param>
<returns>A locator that locates elements that are either visible or not, depending on the parameter passed.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attributes(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns a locator that locates elements according to one or more attributes. You can also use regular expressions.
</summary>
<param name="attributes">Dictionary of attributes.</param>
<returns>A locator that locates elements that have the specified attribute values.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attribute(System.String,System.String)">
<summary>
Returns a locator that locates elements according to a single attribute.
</summary>
<param name="name">The name of the attribute.</param>
<param name="value">The value of the attribute.</param>
<returns>A locator that locates elements that have the specified attribute value.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Attribute(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements according to a single attribute, described using a regular expression.
</summary>
<param name="name">The name of the attribute.</param>
<param name="value">The Pattern of the attribute.</param>
<returns>A locator that locates elements whose attribute value matches the specified pattern.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Styles(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns a locator that locates elements according to one or more styles. You can also use regular expressions.
</summary>
<param name="styles">Dictionary of styles.</param>
<returns>A locator that locates elements with the specified styles.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Style(System.String,System.String)">
<summary>
Returns a locator that locates elements according to a single style.
</summary>
<param name="name">The name of the style.</param>
<param name="value">The value of the style.</param>
<returns>A locator that locates elements with the specified style.</returns>
</member>
<member name="M:LeanFT.Selenium.By.Style(System.String,System.Text.RegularExpressions.Regex)">
<summary>
Returns a locator that locates elements according to a single style, described using a regular expression.
</summary>
<param name="name">The name of the style.</param>
<param name="value">The Pattern of the style.</param>
<returns>A locator that locates elements whose style matches the specified pattern.</returns>
</member>
<member name="T:LeanFT.Selenium.ByAny">
<summary>
A locator that locates elements that match one or more of the specified locators (attributes, tags, styles etc.).
</summary>
</member>
<member name="M:LeanFT.Selenium.ByAny.#ctor(OpenQA.Selenium.By[])">
<summary>
A constructor for the ByAny locator.
</summary>
<param name="bys">The locators (Bys) by which the elements should be identified.</param>
</member>
<member name="T:LeanFT.Selenium.ByEach">
<summary>
A locator that locates elements that match all specified locators (attributes, tags, styles etc.).
</summary>
</member>
<member name="M:LeanFT.Selenium.ByEach.#ctor(OpenQA.Selenium.By[])">
<summary>
A constructor for the ByEach locator.
</summary>
<param name="bys">The locators (Bys) by which the elements should be identified.</param>
</member>
<member name="T:LeanFT.Selenium.Utils">
<summary>
LeanFT for Selenium utilities.
</summary>
</member>
<member name="M:LeanFT.Selenium.Utils.GetSnapshot(OpenQA.Selenium.IWebElement)">
<summary>
Returns a snapshot (image) of the selenium element.
</summary>
<param name="element">The element to retrieve a snapshot for.</param>
<returns>A snapshot of the element.</returns>
</member>
<member name="M:LeanFT.Selenium.Utils.Highlight(OpenQA.Selenium.IWebElement)">
<summary>
Highlights the selenium element in the browser.
</summary>
<param name="element">The web element to highlight.</param>
</member>
<member name="M:LeanFT.Selenium.Utils.Highlight(OpenQA.Selenium.IWebElement,System.Int32)">
<summary>
Highlights the selenium elements in the browser for time milliseconds.
</summary>
<param name="element">The web element to highlight.</param>
<param name="time">The time (in milliseconds) that the element is highlighted. In case of a negative number, the method throws an ArgumentException.
If time is less than 150, the element is not highlighted.</param>
</member>
<member name="M:LeanFT.Selenium.Utils.ScrollIntoView(OpenQA.Selenium.IWebElement)">
<summary>
Scrolls the page to make the web element visible.
</summary>
<param name="element">The web element to scroll to.</param>
</member>
</members>
</doc>

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet