zilberstein: that'd be on your website's side that it's doing that
zilberstein: you arent loading like "http://m.yourwebsite.com" instead of "http://yourwebsite.com" are you
simonstewart
yo
lukeis
yo
WhereIsMySpoon
yo yo yo
zilberstein
WhereIsMySpoon, on website, ther's set of CSS with @media
WhereIsMySpoon, it tells browser to use mobile css for android and desktop css for firefox
Machinista has quit
Dave_B_ has quit
p0deje joined the channel
SitamJana has quit
sjmikem joined the channel
merobertsjr_ joined the channel
lukeis
so, last night (right next to my building on the embarcadero, a very touristy spot) someone shots / kills a person…. then this morning while news crews are reporting, get robbed at gun point…. ummm, wtf
WhereIsMySpoon
o.o
lukeis
and the gun nuts still think nothing is wrong
WhereIsMySpoon
lukeis: but without guns how can we gun the gunners??? guns!!11
muh freedomz!!11
lukeis
more like "but without my gun i can't protect myself" is the typical argument
Hello gentlepeople of selenium! I seek help with a question, one that has confounded me for over a day! Is there any way at all to download a file from a selenium grid node to your local machine? I know what I seek might be dumb, but right now it's the only way I can validate these reports because my developers refuse to change the mime-type so it opens in the browser. Help me, selenium room, you're my only hope!
WhereIsMySpoon
enroxorz: you mean from the node machine that is running the tests to the hub machine?
l3dx has quit
p0deje joined the channel
swampdragons has left the channel
enroxorz
WhereIsMySpoon: yes
it's...not fun doing this...
WhereIsMySpoon
enroxorz: you shouldnt really be messing with downloads at all
enroxorz: what I do is use a simple http request and response inspector class to send the http response to download then inspect the response headers
so i do everything selenium up till the point where i would click the download button
then put the url that would do the download in that clas
i know, downloading files rubs me wrong too. im talking to my devs right now if there is an alternative. thanks.
gabecase_ joined the channel
lukeis
enroxorz: you can use an http client (in your language of choice) and 'download' the file… if it's an authenticated session, then you likely just need to make sure to pass the Session Cookie in the http header
Dave_B_: I personally like to write code using grass and mud
:p
admc joined the channel
Dave_B_
worded like that in case of record & playback
lukeis typically likes to drop down into assembly code… fiddle around with the network bus to make the http requests ;)
but aye, not the best sentence I've ever written :p
couple of wires and good timing, you can get those 1's and 0's
WhereIsMySpoon
lol
enroxorz
i have a http client for my tools written for the API Authentication for another system. I just need to figure out how to grab the right cookie data so i can mimic the browser via net-http
lukeis
aye, that's the trick :)
WhereIsMySpoon
enroxorz: selenium allows you to grab your current cookies iirc
we're only on github now, don't look at the google code :)
MajorT joined the channel
titusfortner
enroxorz: Not sure if it applies to you, but Ruby's rest-client gem gave us issues with authentication in our API Calls. We ended up having to use the mechanize gem to get the cookies to post through the authentication redirect.
p0deje has quit
lukeis has quit
michl68 joined the channel
gabecase_ has left the channel
Ardesco joined the channel
zeljkof-meeting is now known as zeljkof-away
WhereIsMySpoon has quit
bimmelino has quit
l3dx joined the channel
dcboycm has quit
dcboycm joined the channel
dcboycm has quit
dcboycm_ joined the channel
p0deje joined the channel
gabecas__ joined the channel
zeljkof-away is now known as zeljkof-meeting
enroxorz
titusfortner: thanks for the heads up. i'll check mechanize first.
Kyl9 joined the channel
jmeaney__ joined the channel
titusfortner
Yeah, we needed API interactions and couldn't use oath, and there weren't a lot of discussions about options for our particular use case that I could find via Google.