Question #274000 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/274000

masuo posted a new comment:
If you may use Selenium-WebDriver with SikuliX, you can call Selenium-
WebDriver API from SikuliX-IDE in order to control browser windows size
.

[for example:]
load("C:\selenium\selenium-server-standalone-2.47.1.jar")
import org.openqa.selenium.firefox.FirefoxDriver as FD
import org.openqa.selenium.Dimension as Dm

driver = FD()
driver.get("http://www.sikuli.org/";)
size = Dm(500,500)
driver.manage().window().setSize(size)

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to