Bumblebee.IntegrationTests.Implementation.TableTests.Given_complex_table.Should_go_to_table_page_when_table_link_is_clicked C# (CSharp) Метод

Should_go_to_table_page_when_table_link_is_clicked() приватный Метод

private Should_go_to_table_page_when_table_link_is_clicked ( ) : void
Результат void
		public void Should_go_to_table_page_when_table_link_is_clicked()
		{
			Threaded<Session>
				.CurrentBlock<ComplexTablePage>()
				.Table
				.RowsAs<ComplexTableRow>().First()
				.TablePageLink.Click()
				.Table
				.VerifyThat(x => x.Rows
					.Count()
					.Should()
					.Be(3));
		}