Oleksii
Oleksii
@cnishina should it be re done with `selenium4` branch as a base?
as I know next release will be against `selenium4` branch. It might be better to create PR against this branch. @cnishina , could you clarify?
@cnishina could you take a look at it useful PR? :)
You could override `filter` function to force send requests sequential. ``` private makeFnSequential(func: any): any { let promise: any = Promise.resolve(); return (...args) => { promise = promise.then(() => {...
It also works incorrectly with all functions which have concurrent requests. Such as `map`, `reduce`, `each`, `Promise.all`