Skip to content

Commit 1da9437

Browse files
s_roes_roe
authored andcommitted
updates
1 parent 4054457 commit 1da9437

File tree

102 files changed

+679
-479
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+679
-479
lines changed

docs/Gravity.Core.xml

Lines changed: 46 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/OpenQA-Selenium-Common-ExpectedConditions-AlertIsPresent().md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## ExpectedConditions.AlertIsPresent() Method
44
An expectation for checking if alert is present on this session.
55
```csharp
6-
public static System.Func<IWebDriver,IAlert> AlertIsPresent();
6+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IAlert> AlertIsPresent();
77
```
88
#### Returns
99
[System.Func&lt;](https://docs.microsoft.com/en-us/dotnet/api/System.Func-2 'System.Func`2')[OpenQA.Selenium.IWebDriver](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.IWebDriver 'OpenQA.Selenium.IWebDriver')[,](https://docs.microsoft.com/en-us/dotnet/api/System.Func-2 'System.Func`2')[OpenQA.Selenium.IAlert](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.IAlert 'OpenQA.Selenium.IAlert')[&gt;](https://docs.microsoft.com/en-us/dotnet/api/System.Func-2 'System.Func`2')

docs/OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(By_string_string).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(OpenQA-Selenium-By_string_string).md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.AttributeMatches(By, string, string) Method
3+
## ExpectedConditions.AttributeMatches(OpenQA.Selenium.By, string, string) Method
44
An expectation for the given element's attribute to match a pattern.
55
```csharp
6-
public static System.Func<IWebDriver,IWebElement> AttributeMatches(By by, string attribute, string regex);
6+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement> AttributeMatches(OpenQA.Selenium.By by, string attribute, string regex);
77
```
88
#### Parameters
9-
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(By_string_string)-by'></a>
9+
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(OpenQA-Selenium-By_string_string)-by'></a>
1010
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1111
The locator used to find the element.
1212

13-
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(By_string_string)-attribute'></a>
13+
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(OpenQA-Selenium-By_string_string)-attribute'></a>
1414
`attribute` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String')
1515
The attribute name to assert against the pattern.
1616

17-
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(By_string_string)-regex'></a>
17+
<a name='OpenQA-Selenium-Common-ExpectedConditions-AttributeMatches(OpenQA-Selenium-By_string_string)-regex'></a>
1818
`regex` [System.String](https://docs.microsoft.com/en-us/dotnet/api/System.String 'System.String')
1919
The regular expression that the attribute should match.
2020

docs/OpenQA-Selenium-Common-ExpectedConditions-ElementExists(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-ElementExists(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.ElementExists(By) Method
3+
## ExpectedConditions.ElementExists(OpenQA.Selenium.By) Method
44
An expectation for checking that an element is present on the DOM of a page.
55
This does not necessarily mean that the element is visible.
66
```csharp
7-
public static System.Func<IWebDriver,IWebElement> ElementExists(By by);
7+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement> ElementExists(OpenQA.Selenium.By by);
88
```
99
#### Parameters
10-
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementExists(By)-by'></a>
10+
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementExists(OpenQA-Selenium-By)-by'></a>
1111
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1212
The locator used to find the element.
1313

docs/OpenQA-Selenium-Common-ExpectedConditions-ElementIsSelected(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-ElementIsSelected(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.ElementIsSelected(By) Method
3+
## ExpectedConditions.ElementIsSelected(OpenQA.Selenium.By) Method
44
An expectation for checking that an element is present on the DOM of a page, visible and selected.
55
Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
66
```csharp
7-
public static System.Func<IWebDriver,IWebElement> ElementIsSelected(By by);
7+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement> ElementIsSelected(OpenQA.Selenium.By by);
88
```
99
#### Parameters
10-
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementIsSelected(By)-by'></a>
10+
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementIsSelected(OpenQA-Selenium-By)-by'></a>
1111
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1212
The locator used to find the element.
1313

docs/OpenQA-Selenium-Common-ExpectedConditions-ElementIsVisible(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-ElementIsVisible(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.ElementIsVisible(By) Method
3+
## ExpectedConditions.ElementIsVisible(OpenQA.Selenium.By) Method
44
An expectation for checking that an element is present on the DOM of a page and visible.
55
Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
66
```csharp
7-
public static System.Func<IWebDriver,IWebElement> ElementIsVisible(By by);
7+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement> ElementIsVisible(OpenQA.Selenium.By by);
88
```
99
#### Parameters
10-
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementIsVisible(By)-by'></a>
10+
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementIsVisible(OpenQA-Selenium-By)-by'></a>
1111
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1212
The locator used to find the element.
1313

docs/OpenQA-Selenium-Common-ExpectedConditions-ElementToBeClickable(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-ElementToBeClickable(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.ElementToBeClickable(By) Method
3+
## ExpectedConditions.ElementToBeClickable(OpenQA.Selenium.By) Method
44
An expectation for checking if an element is visible and enabled such that you can click it.
55
```csharp
6-
public static System.Func<IWebDriver,IWebElement> ElementToBeClickable(By by);
6+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement> ElementToBeClickable(OpenQA.Selenium.By by);
77
```
88
#### Parameters
9-
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementToBeClickable(By)-by'></a>
9+
<a name='OpenQA-Selenium-Common-ExpectedConditions-ElementToBeClickable(OpenQA-Selenium-By)-by'></a>
1010
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1111
The locator used to find the element.
1212

docs/OpenQA-Selenium-Common-ExpectedConditions-EnabilityOfAllElementsLocatedBy(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-EnabilityOfAllElementsLocatedBy(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.EnabilityOfAllElementsLocatedBy(By) Method
3+
## ExpectedConditions.EnabilityOfAllElementsLocatedBy(OpenQA.Selenium.By) Method
44
An expectation for checking that all elements present on the web page that
55
match the locator are visible and enabled. Visibility means that the elements are not
66
only displayed but also have a height and width that is greater than 0.
77
```csharp
8-
public static System.Func<IWebDriver,System.Collections.ObjectModel.ReadOnlyCollection<IWebElement>> EnabilityOfAllElementsLocatedBy(By by);
8+
public static System.Func<OpenQA.Selenium.IWebDriver,System.Collections.ObjectModel.ReadOnlyCollection<OpenQA.Selenium.IWebElement>> EnabilityOfAllElementsLocatedBy(OpenQA.Selenium.By by);
99
```
1010
#### Parameters
11-
<a name='OpenQA-Selenium-Common-ExpectedConditions-EnabilityOfAllElementsLocatedBy(By)-by'></a>
11+
<a name='OpenQA-Selenium-Common-ExpectedConditions-EnabilityOfAllElementsLocatedBy(OpenQA-Selenium-By)-by'></a>
1212
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1313
The locator used to find the element.
1414

docs/OpenQA-Selenium-Common-ExpectedConditions-FrameToBeAvailableAndSwitchToIt(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-FrameToBeAvailableAndSwitchToIt(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.FrameToBeAvailableAndSwitchToIt(By) Method
3+
## ExpectedConditions.FrameToBeAvailableAndSwitchToIt(OpenQA.Selenium.By) Method
44
An expectation for checking whether the given frame is available to switch to.
55
If the frame is available it switches the given driver to the specified frame.
66
```csharp
7-
public static System.Func<IWebDriver,IWebDriver> FrameToBeAvailableAndSwitchToIt(By by);
7+
public static System.Func<OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebDriver> FrameToBeAvailableAndSwitchToIt(OpenQA.Selenium.By by);
88
```
99
#### Parameters
10-
<a name='OpenQA-Selenium-Common-ExpectedConditions-FrameToBeAvailableAndSwitchToIt(By)-by'></a>
10+
<a name='OpenQA-Selenium-Common-ExpectedConditions-FrameToBeAvailableAndSwitchToIt(OpenQA-Selenium-By)-by'></a>
1111
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1212
Locator for the Frame
1313

docs/OpenQA-Selenium-Common-ExpectedConditions-InvisibilityOfAllElementsLocatedBy(By).md renamed to docs/OpenQA-Selenium-Common-ExpectedConditions-InvisibilityOfAllElementsLocatedBy(OpenQA-Selenium-By).md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#### [Gravity.Core](./index.md 'index')
22
### [OpenQA.Selenium.Common](./OpenQA-Selenium-Common.md 'OpenQA.Selenium.Common').[ExpectedConditions](./OpenQA-Selenium-Common-ExpectedConditions.md 'OpenQA.Selenium.Common.ExpectedConditions')
3-
## ExpectedConditions.InvisibilityOfAllElementsLocatedBy(By) Method
3+
## ExpectedConditions.InvisibilityOfAllElementsLocatedBy(OpenQA.Selenium.By) Method
44
An expectation for checking that all elements are either invisible or not present on the DOM.
55
```csharp
6-
public static System.Func<IWebDriver,System.Collections.ObjectModel.ReadOnlyCollection<IWebElement>> InvisibilityOfAllElementsLocatedBy(By by);
6+
public static System.Func<OpenQA.Selenium.IWebDriver,System.Collections.ObjectModel.ReadOnlyCollection<OpenQA.Selenium.IWebElement>> InvisibilityOfAllElementsLocatedBy(OpenQA.Selenium.By by);
77
```
88
#### Parameters
9-
<a name='OpenQA-Selenium-Common-ExpectedConditions-InvisibilityOfAllElementsLocatedBy(By)-by'></a>
9+
<a name='OpenQA-Selenium-Common-ExpectedConditions-InvisibilityOfAllElementsLocatedBy(OpenQA-Selenium-By)-by'></a>
1010
`by` [OpenQA.Selenium.By](https://docs.microsoft.com/en-us/dotnet/api/OpenQA.Selenium.By 'OpenQA.Selenium.By')
1111
The locator used to find the elements.
1212

0 commit comments

Comments
 (0)