Juan Manuel Azambuja

Results 34 comments of Juan Manuel Azambuja

@Moxide I'm facing the same issue, I guess this could be handled in two ways, we can either modify `joinChannel` to return something like `{ channel: channel, joinObject: channel.join}` or...

Yes, I know the returned object contains the channel, but if we change the return value of the `joinChannel` function, users will have to modify their code, the api would...

@offirgolan The only problem is that the menu transformations are not displayed. The menu is never displayed as open when the test is running. You can do assertions on its...

@offirgolan It seems that the scaling done to show the app within the testing container is messing up with `ember-burger-menu`'s CSS. I already used `pauseTest()` but I was not able...

@yratanov you could this without defining a property ``` export default create({ role: powerSelect('.role'), submit: clickOnText('.btn'), }); function powerSelect(selector) { return function(text) { selectChoose(selector, text); }); } ``` If you...

As shown it will, but: ``` export default create({ role: powerSelect('.role'), submit: clickOnText('.btn'), }); function powerSelect(selector) { return function(text) { selectChoose(selector, text); return this; }); } ``` And using `async`...

@yratanov I don't have time to do it right now and test, but I'm pretty sure it's doable using await on the `selectChoose` helper.

@yratanov that's perfect. @ro0gr sounds great. Exposing internals for creating custom properties is definitely necessary.

@sohara Hi! there are ways to share common code between POs, for example: ``` js const modelComponent = PageObject.create({ scope: '.modal' }); const page = PageObject.create({ modal: modalComponent }); const...

@trisrael hey, I took a look at that twiddle: `assert.ok(page.subcomponent.isVisible, 'button is visible');` That statement is checking that the subcomponent is visible, that is to say an element with selector...