Skip to content

Commit a1d8732

Browse files
Extend ITableRowWrapper. (#112)
1 parent a500d4e commit a1d8732

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
[1.9.4] - 2022-05-13
8-
### Changed
9-
- Improve "user opens relative URL" step
10-
11-
[1.9.3] - 2022-05-12
12-
### Changed
13-
- Fix table rows count assertion message.
14-
15-
[1.9.2] - 2022-05-11
7+
[1.10.0] - 2022-05-16
168
### Added
17-
- Added binding to check that table contains rows in exact order
9+
- Added cells representation to the ITableRowWrapper interface.

src/Behavioral.Automation/Behavioral.Automation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The whole automation code is divided into the following parts:
1616
- UI structure descriptive code
1717
- Supportive code</Description>
1818
<Copyright>Quantori Inc.</Copyright>
19-
<PackageVersion>1.9.4</PackageVersion>
19+
<PackageVersion>1.10.0</PackageVersion>
2020
<RepositoryUrl>https://github.com/quantori/Behavioral.Automation</RepositoryUrl>
2121
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2222
<IncludeSymbols>true</IncludeSymbols>

src/Behavioral.Automation/Elements/ITableRowWrapper.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,10 @@ public interface ITableRowWrapper: IWebElementWrapper
1111
/// Row cells texts in form of <see cref="string"/> collection
1212
/// </summary>
1313
IEnumerable<string> CellsText { get; }
14+
15+
/// <summary>
16+
/// Row cells in form of <see cref="IWebElementWrapper"/> collection
17+
/// </summary>
18+
IEnumerable<IWebElementWrapper> Cells { get; }
1419
}
1520
}

0 commit comments

Comments
 (0)