Iakiv Kramarenko

Results 153 comments of Iakiv Kramarenko

probably same is actual for `exercises.should(have.no.exact_text(20).each)`

@cachebag > but do you think that [:3] might be a bit misleading? Typically, slices mean "take up N items", not "wait for exactly N items." Users might just expect...

It's a bit complicated to implement right now, because it relates to some kind of caching logic of Selene Elements... So probably this will be on my shoulders...

Hm... How the solution would look like? if use ITimeProvider?

Actually... specifically that failure, from your example above – is pretty weird The general timeout is 1.0 The polling is 0.05 - almost zero, that means that we will recheck...

Good good! Looking forward! On Fri, Sep 13, 2024 at 3:42 PM wjgerritsen-0001 ***@***.***> wrote: > My guess is the the CI server is pretty heavy loaded, so that the...

@wjgerritsen-0001 I don't like using Assert.Throws helper, because it breaks AAA (Arrange, Act, Assert) pattern... compare: ```cs [Test] public void Should_HaveText_IsRenderedInError_OnHiddenElementFailure() { // ARRANGE Configuration.Timeout = 0.25; Configuration.PollDuringWaits = 0.1;...

Heh, Nice trick! :) It's definitely better than was in terms of AAA pattern. Yet - this is a trick:) Because the actual action is performed under ASSERT clause... Let...

Will try to review it this weekend! thank you for the PR!