Ruslan Hrabovyi

Results 141 comments of Ruslan Hrabovyi

ok, I found it reproduces to me when I run it via `yarn start`. Doing `npm start` and `ember s` works as expected for me. Can you please confirm it...

@san650 it's interesting. I haven't considered it until have read your comment. I'm pretty sure the `as` helper doesn't support inner asynchrony currently. But let's I assume it does. I...

I think that the proposed form of the `fork` is also not the best. It only allows you to assign, but not to destruct: ```js const username = form.username.fork(); const...

Updated description with the `root` property alternative.

I believe it can be replaced by leveraging of the `document.activeElement` in a custom property, smth like: ```js // pseudo code export function hasFocus(selector, userOptions = {}) { return {...

hey @gnclmorais! though I feel like it isn't a super frequently used feature, I'm not opposed to have this included by default. Just a remark about possible implementation... The suggested...

While the proposal feels ergonomic to me, unfortunately it's not a forward compatible change. If we accept the proposal then on the page object creation phase we need to guard...

After thinking about it more, I think we can achieve this. For now, we support 2 string properies on a page object definition. So in order achieve string scopes, we...

Thanks for opening PR! I agree that the issue should be addressed. There are few quick implementation related observations: - I believe we should avoid increasing reliance on jquery in...

> this package already uses jQuery That's true. However, we intend to reduce dependency on jQuery or even remove it at some point. So if we can avoid new integration...