sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #35607
Re: [Question #274000]: APP property settings
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.