LeanFT.Selenium
Advanced tools
Sorry, the diff of this file is not supported yet
@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>LeanFT.Selenium</id> | ||
| <version>1.0.0</version> | ||
| <version>1.0.1</version> | ||
| <title>LeanFT for Selenium DotNet (C#) SDK</title> | ||
@@ -8,0 +8,0 @@ <authors>MicroFocus</authors> |
@@ -14,48 +14,48 @@ <?xml version="1.0"?> | ||
| <summary> | ||
| Returns a locator that locates elements by the provided regular expression name parameter. | ||
| 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 given name.</returns> | ||
| <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 provided regular expression ID parameter. | ||
| 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 given ID.</returns> | ||
| <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 provided regular expression className parameter. | ||
| 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 given className.</returns> | ||
| <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 provided regular expression linkText parameter. | ||
| 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 given linkText.</returns> | ||
| <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 provided regular expression tagName parameter. | ||
| 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 given tagName.</returns> | ||
| <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 provided role parameter. | ||
| 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 given role.</returns> | ||
| <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 provided regular expression role parameter. | ||
| 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 given role.</returns> | ||
| <returns>A locator that locates elements with the specified role.</returns> | ||
| </member> | ||
@@ -67,10 +67,10 @@ <member name="M:LeanFT.Selenium.By.Type(System.String)"> | ||
| <param name="type">The type of the elements.</param> | ||
| <returns>A locator that locates elements with the given type.</returns> | ||
| <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 provided regular expression type parameter. | ||
| Returns a locator that locates elements by the specified type, described using a regular expression. | ||
| </summary> | ||
| <param name="type">The role of the elements in the form of a regular expression.</param> | ||
| <returns>A locator that locates elements with the given type.</returns> | ||
| <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> | ||
@@ -82,10 +82,10 @@ <member name="M:LeanFT.Selenium.By.VisibleText(System.String)"> | ||
| <param name="visibleText">The visible text of the elements.</param> | ||
| <returns>A locator that locates elements by the visible text.</returns> | ||
| <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 provided regular expression visibleText parameter. | ||
| 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 by the visible text.</returns> | ||
| <returns>A locator that locates elements whose visible text matches the specified text.</returns> | ||
| </member> | ||
@@ -104,3 +104,3 @@ <member name="M:LeanFT.Selenium.By.Visible(System.Boolean)"> | ||
| <param name="attributes">Dictionary of attributes.</param> | ||
| <returns>A locator that locates elements by their attributes.</returns> | ||
| <returns>A locator that locates elements that have the specified attribute values.</returns> | ||
| </member> | ||
@@ -113,11 +113,11 @@ <member name="M:LeanFT.Selenium.By.Attribute(System.String,System.String)"> | ||
| <param name="value">The value of the attribute.</param> | ||
| <returns>A locator that locates elements by an attribute.</returns> | ||
| <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. | ||
| 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 by an attribute.</returns> | ||
| <returns>A locator that locates elements whose attribute value matches the specified pattern.</returns> | ||
| </member> | ||
@@ -129,3 +129,3 @@ <member name="M:LeanFT.Selenium.By.Styles(System.Collections.Generic.IDictionary{System.String,System.Object})"> | ||
| <param name="styles">Dictionary of styles.</param> | ||
| <returns>A locator that locates elements by their styles.</returns> | ||
| <returns>A locator that locates elements with the specified styles.</returns> | ||
| </member> | ||
@@ -138,15 +138,15 @@ <member name="M:LeanFT.Selenium.By.Style(System.String,System.String)"> | ||
| <param name="value">The value of the style.</param> | ||
| <returns>A locator that locates elements by an style.</returns> | ||
| <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. | ||
| 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 by an style.</returns> | ||
| <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 according to any of the given locators (attributes, tags, styles etc.). | ||
| A locator that locates elements that match one or more of the specified locators (attributes, tags, styles etc.). | ||
| </summary> | ||
@@ -156,3 +156,3 @@ </member> | ||
| <summary> | ||
| * A constructor for the ByAny locator. | ||
| A constructor for the ByAny locator. | ||
| </summary> | ||
@@ -163,3 +163,3 @@ <param name="bys">The locators (Bys) by which the elements should be identified.</param> | ||
| <summary> | ||
| A locator that locates elements according to one or more locators (attributes, tags, styles etc.). | ||
| A locator that locates elements that match all specified locators (attributes, tags, styles etc.). | ||
| </summary> | ||
@@ -166,0 +166,0 @@ </member> |
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
Sorry, the diff of this file is too big to display