Rob Dodson

Results 364 comments of Rob Dodson
trafficstars

@teddyward I'd suggest using Polymer CLI if possible. I don't think anyone is able to maintain this generator.

I think I'd also like the ability to pass in, and receive the entire URL. I'm hooking iron-page-url up to router.js and am doing stuff like this: ``` // Tell...

I'm a total selenium newb but I started down the path of trying to add in iphone support. Here's what I've added to node-huxley: https://github.com/robdodson/node-huxley/commit/938ffc34a386dac0ee7b4564afd3d5f041545853 When I run the ios-driver,...

This version of driver.js gets us much closer (https://github.com/robdodson/node-huxley/blob/e00ea0b39f90408108e80aecc8ead9e7ae2a1a40/source/browser/driver.js). I'm able to open my site, and press enter in terminal (although it doesn't look like it recorded any snapshots yet)....

Hm this might be interesting... I started following the errors and logging the `responseObj` that's handed to `checkResponse` Here's what I see when I'm just clicking around in record mode:...

I was able to get a bit further by disabling the `openDummy` command (https://github.com/robdodson/node-huxley/commit/34b35a531ef288025bf808409d13ee1ca180dff7). It seems like that command is intended to open a second session to steal focus from...

OK, so... If I only use clicks I can get a complete playback. For instance, starting a recording, clicking on the checkbox, hitting enter then q. That plays back fine....

Hah funny... so when I just run `hux -b iphone` it fails because the screencap captures the clock at the top of the simulator and the times differ. ![diff](https://cloud.githubusercontent.com/assets/1066253/3472863/dc2c21c2-02d0-11e4-908a-21f839210ea0.png)

Working on a fix by adding a condition inside of `simulateScreenshot.js`. Gotta figure out if that bar hides itself if the user is scrolling down the page :\

> The clock issue is easy to solve. I did a similar thing for Chrome/FF: https://github.com/chenglou/node-huxley/blob/master/source/constants.js Just configuring the top of the screenshot to be down 50px seemed to chop...