Question

I know there is a function called browser.window.move_to(0, 0) to move the browser into different position, but the OSX 10.9 is completely new for it.

Are there any methods can be used to move the browser to another desktop? E.g. Console to trigger command in "Desktop 2", but I want the browser appear in "Desktop 1".

Many thanks!

Était-ce utile?

La solution

Ha, I was about to say this probably isn't possible before I tried this:

browser.window.move_to(-1200,0)

My second monitor is oriented to the left of my main screen. It worked. Nice question.

You'll need to fool around with it to get it right but watir appears to be able to use the entire canvas of monitors. If your monitor was above your main screen for example you'd move it there using something like

browser.window.move_to(0,-1000)
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top