blob: 056e0921ff95c51ad268ce0a68b601cc27da7e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package com.vaadin.tests.widgetset.server.gwtrpc;
import org.junit.Test;
import org.openqa.selenium.By;
import com.vaadin.tests.tb3.MultiBrowserTest;
import com.vaadin.tests.widgetset.client.gwtrpc.GwtRpcButtonConnector;
/**
* Test the GWT RPC with Vaadin DevMode. See #11709.
*
* @author Vaadin Ltd
*/
public class GwtRpcTest extends MultiBrowserTest {
@Test
public void testGwtRpc() {
openTestURL();
getDriver().findElement(By.id(GwtRpc.BUTTON_ID)).click();
By label = By.id(GwtRpcButtonConnector.SUCCESS_LABEL_ID);
waitForElementVisible(label);
getDriver().findElement(label);
}
}
|