File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed
src/Behavioral.Automation Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,6 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and 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.
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments