Guillaume

Results 77 comments of Guillaume

@MattRuddick I cloned the `master` branch of the repo when I tested it out 24 days ago, so after release 1.5.4. I still think that, regardless of the bug, it...

@FezVrasta yes this is not a fix, it's just a "silent" fail. I think there should be an error thrown instead that just looks better than "TypeError", which would tell...

Hey so I think @jherencia is on the right track, let me explain what's going on: so for whatsapp, we use a normal link `` to trigger a call to...

@45kb well not an attribute of the DOM element since it is specific to each provider

@depran7 what version did you use?

but not a solution for everyone, it is not free

FYI, I am using this piece of code for google login, which you can easily adapt for facebook: ``` js function _checkPresenceOf(selector) { return browser.wait(function() { return browser.isElementPresent($(selector)); }, 5000,...

This feature would be quite interesting to have in this tool by default. I very often realise I missed testing a whole file because I imported a function from another...

@icyerasor this works really well. Just wondering, how do you pass multiple args to the function? or can only use objects in that case?

@icyerasor the parameter of `typeaheadFunction` is the piped value, not a parameter of the pipe. So I'm talking about: ```typescript typeaheadFunction: (param1: string, param2: string) => ... ``` for example....