private void VerifyParticipantDetails() { foreach (var participant in _c.Test.Conference.Participants) { _browser.TextOf(EventsPage.ParticipantDisplayName(participant.Id)).Should().Be(participant.DisplayName); _browser.TextOf(EventsPage.ParticipantUsername(participant.Id)).Should().Be(participant.Username); _browser.TextOf(EventsPage.ParticipantUserRole(participant.Id)).Should().Be(participant.UserRole.ToString()); _browser.TextOf(EventsPage.ParticipantId(participant.Id)).Should().Be(participant.Id.ToString()); _browser.TextOf(EventsPage.ParticipantStatus(participant.Id)).Should().Be(participant.CurrentStatus.ToString()); } }