Java Code Examples for java.awt.Robot#setAutoWaitForIdle()
The following examples show how to use
java.awt.Robot#setAutoWaitForIdle() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JComboBoxPopupLocation.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public static void main(final String[] args) throws Exception { robot = new Robot(); robot.setAutoDelay(100); robot.setAutoWaitForIdle(true); GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice[] sds = ge.getScreenDevices(); UIManager.LookAndFeelInfo[] lookAndFeelArray = UIManager.getInstalledLookAndFeels(); for (UIManager.LookAndFeelInfo lookAndFeelItem : lookAndFeelArray) { System.setProperty(PROPERTY_NAME, "true"); step(sds, lookAndFeelItem); if (lookAndFeelItem.getClassName().contains("Aqua")) { System.setProperty(PROPERTY_NAME, "false"); step(sds, lookAndFeelItem); } } }
Example 2
Source File: PaintSetEnabledDeadlock.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { PaintSetEnabledDeadlock frame = new PaintSetEnabledDeadlock(); frame.setSize(200, 200); frame.setVisible(true); Robot robot = Util.createRobot(); robot.setAutoDelay(100); robot.setAutoWaitForIdle(true); for (int i = 0; i < 20; ++i) { Util.clickOnComp(frame.panel, robot); Util.clickOnComp(frame.button, robot); } boolean ret = frame.panel.stop(); frame.dispose(); if (!ret) { throw new RuntimeException("Test failed!"); } System.out.println("Test passed."); }
Example 3
Source File: MultiScreenRobotPosition.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { GraphicsDevice[] sds = GraphicsEnvironment.getLocalGraphicsEnvironment() .getScreenDevices(); for (final GraphicsDevice gd : sds) { fail = true; Robot robot = new Robot(gd); robot.setAutoDelay(100); robot.setAutoWaitForIdle(true); Frame frame = new Frame(gd.getDefaultConfiguration()); frame.setUndecorated(true); frame.setSize(400, 400); frame.setVisible(true); robot.waitForIdle(); frame.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { System.out.println("e = " + e); fail = false; } }); Rectangle bounds = frame.getBounds(); robot.mouseMove(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2); robot.mousePress(MouseEvent.BUTTON1_DOWN_MASK); robot.mouseRelease(MouseEvent.BUTTON1_DOWN_MASK); frame.dispose(); if (fail) { System.err.println("Frame bounds = " + bounds); throw new RuntimeException("Click in the wrong location"); } } }
Example 4
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 5 votes |
private void checkAltClickEvent(int eventToCheck) throws InterruptedException, InvocationTargetException, AWTException { events = eventToCheck; tclear(); Point locationButton = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension sizeButton = EventQueueWait.call_noexc(button, "getSize"); Point locationTextArea = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension sizeTextArea = EventQueueWait.call_noexc(actionsArea, "getSize"); Robot robot = new Robot(); robot.setAutoDelay(10); robot.setAutoWaitForIdle(true); robot.mouseMove(locationTextArea.x + sizeTextArea.width / 2, locationTextArea.y + sizeTextArea.height / 2); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON1_MASK); robot.mouseMove(locationButton.x + sizeButton.width / 2 + 1, locationButton.y + sizeButton.height / 2 + 1); robot.mouseMove(locationButton.x + sizeButton.width / 2, locationButton.y + sizeButton.height / 2); robot.keyPress(KeyEvent.VK_ALT); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON1_MASK); robot.keyRelease(KeyEvent.VK_ALT); robot.mouseMove(locationTextArea.x + sizeTextArea.width / 2, locationTextArea.y + sizeTextArea.height / 2); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON1_MASK); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = weTextArea.getText(); tclear(); System.err.println("================================"); System.err.println(expected); System.err.println("================================="); new Actions(driver).moveToElement(weButton).keyDown(Keys.ALT).click().keyUp(Keys.ALT).moveToElement(weTextArea).perform(); AssertJUnit.assertEquals(expected, weTextArea.getText()); }
Example 5
Source File: EditPadTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@BeforeClass public static void setUpEditorPadTest() { if (!GraphicsEnvironment.isHeadless()) { try { robot = new Robot(); robot.setAutoWaitForIdle(true); robot.setAutoDelay(DELAY); } catch (AWTException e) { throw new ExceptionInInitializerError(e); } } }
Example 6
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 5 votes |
private void checkDoubleClickEvent(int eventToCheck) throws InterruptedException, InvocationTargetException, AWTException { events = eventToCheck; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("click-me")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(button, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); Thread.sleep(50); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().contains("(2"); } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(button, "getSize"); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); new Actions(driver).moveToElement(b).doubleClick().perform(); AssertJUnit.assertEquals(expected, t.getText()); }
Example 7
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 5 votes |
public void enteredGeneratesSameEvents() throws Throwable { events = MouseEvent.MOUSE_ENTERED; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("click-me")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(button, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); r.keyPress(KeyEvent.VK_ALT); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); r.keyRelease(KeyEvent.VK_ALT); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(actionsArea, "getSize"); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); new Actions(driver).moveToElement(t).keyDown(Keys.ALT).moveToElement(b).click().keyUp(Keys.ALT).perform(); AssertJUnit.assertEquals(expected, t.getText()); }
Example 8
Source File: MouseWheelAbsXY.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static void test(GraphicsConfiguration gc) throws AWTException { final Window frame = new Frame(gc); try { frame.addMouseWheelListener(e -> { wheelX = e.getXOnScreen(); wheelY = e.getYOnScreen(); done = true; }); frame.setSize(300, 300); frame.setVisible(true); final Robot robot = new Robot(); robot.setAutoDelay(50); robot.setAutoWaitForIdle(true); mouseX = frame.getX() + frame.getWidth() / 2; mouseY = frame.getY() + frame.getHeight() / 2; robot.mouseMove(mouseX, mouseY); robot.mousePress(InputEvent.BUTTON1_DOWN_MASK); robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK); robot.mouseWheel(10); validate(); } finally { frame.dispose(); } }
Example 9
Source File: ScreenMenuBarInputTwice.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Exception { robot = new Robot(); robot.setAutoDelay(200); robot.setAutoWaitForIdle(true); createUIWithSeperateMenuBar(); shortcutTestCase(); cleanUp(); createUIWithIntegratedMenuBar(); menuTestCase(); cleanUp(); }
Example 10
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 4 votes |
public void releaseGeneratesSameEvents() throws Throwable { events = MouseEvent.MOUSE_RELEASED; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("click-me")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(button, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(actionsArea, "getSize"); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); b.click(); AssertJUnit.assertEquals(expected, t.getText()); tclear(); new Actions(driver).moveToElement(b).click().perform(); AssertJUnit.assertEquals(expected, t.getText()); }
Example 11
Source File: bug8016356.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 12
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 4 votes |
private void checkKeyEvent(int eventToCheck, String keysToSend, int... keysToPress) throws InterruptedException, InvocationTargetException, AWTException { events = eventToCheck; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("enter-text")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(textField, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(textField, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); for (int keysToPres : keysToPress) { r.keyPress(keysToPres); } for (int i = keysToPress.length - 1; i >= 0; i--) { r.keyRelease(keysToPress[i]); } new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(actionsArea, "getSize"); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); b.sendKeys(keysToSend); System.out.println("Expected: " + expected); AssertJUnit.assertEquals(expected, t.getText()); new Actions(driver).moveToElement(b).click().perform(); AssertJUnit.assertEquals(expected, t.getText()); }
Example 13
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 4 votes |
public void draggedGeneratesSameEvents() throws Throwable { events = MouseEvent.MOUSE_DRAGGED; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("click-me")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(button, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(actionsArea, "getSize"); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mouseRelease(InputEvent.BUTTON1_MASK); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); b.click(); tclear(); System.err.println("============================"); new Actions(driver).clickAndHold(b).moveToElement(b).release().perform(); System.err.println("============================"); AssertJUnit.assertEquals(expected, t.getText()); }
Example 14
Source File: NativeEventsTest.java From marathonv5 with Apache License 2.0 | 4 votes |
public void singleClickGeneratesSameEvents() throws Throwable { events = MouseEvent.MOUSE_CLICKED; SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { actionsArea.setText(""); } }); driver = new JavaDriver(); WebElement b = driver.findElement(By.name("click-me")); WebElement t = driver.findElement(By.name("actions")); Point location = EventQueueWait.call_noexc(button, "getLocationOnScreen"); Dimension size = EventQueueWait.call_noexc(button, "getSize"); Robot r = new Robot(); r.setAutoDelay(10); r.setAutoWaitForIdle(true); r.mouseMove(location.x + size.width / 2, location.y + size.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); new EventQueueWait() { @Override public boolean till() { return actionsArea.getText().length() > 0; } }.wait("Waiting for actionsArea failed?"); String expected = t.getText(); tclear(); Point location2 = EventQueueWait.call_noexc(actionsArea, "getLocationOnScreen"); Dimension size2 = EventQueueWait.call_noexc(actionsArea, "getSize"); r.mouseMove(location2.x + size2.width / 2, location2.y + size2.height / 2); r.mousePress(InputEvent.BUTTON1_MASK); r.mouseRelease(InputEvent.BUTTON1_MASK); b.click(); AssertJUnit.assertEquals(expected, t.getText()); tclear(); new Actions(driver).moveToElement(b).click().perform(); AssertJUnit.assertEquals(expected, t.getText()); }
Example 15
Source File: bug8016356.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 16
Source File: bug8016356.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 17
Source File: bug8016356.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 18
Source File: bug8016356.java From hottub with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 19
Source File: bug8016356.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }
Example 20
Source File: bug8016356.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { // Windows only test if (OSInfo.getOSType() == OSInfo.OSType.WINDOWS) { // Retrieving top edge of Desktop GraphicsConfiguration grConf = GraphicsEnvironment .getLocalGraphicsEnvironment().getDefaultScreenDevice() .getDefaultConfiguration(); Rectangle scrRect = grConf.getBounds(); Insets scrInsets = Toolkit.getDefaultToolkit().getScreenInsets(grConf); scrTop = scrRect.y + scrInsets.top; color = new Color(0, 255, 0); SwingUtilities.invokeAndWait(() -> { createAndShowUI(); }); try { Robot robot = new Robot(); robot.setAutoDelay(500); robot.setAutoWaitForIdle(true); robot.delay(1000); // Resizing a window to invoke Windows Snap feature readFrameInfo(); robot.mouseMove(frLoc.x + frSize.width / 2, frLoc.y); robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseMove(frLoc.x + frSize.width / 2, scrTop); robot.mouseRelease(InputEvent.BUTTON1_MASK); // Retrieving the color of window expanded area readFrameInfo(); Insets insets = frame.getInsets(); Color bgColor = robot.getPixelColor(frLoc.x + frSize.width / 2, frLoc.y + frSize.height - insets.bottom - 1); frame.dispose(); if (!bgColor.equals(color)) { throw new RuntimeException("TEST FAILED: got " + bgColor + " instead of " + color); } System.out.println("TEST PASSED!"); } catch (AWTException ex) { throw new RuntimeException("TEST FAILED!"); } } }