Skip to content

Instantly share code, notes, and snippets.

@lfryc
Created April 13, 2012 22:45
Show Gist options
  • Save lfryc/2380618 to your computer and use it in GitHub Desktop.
Save lfryc/2380618 to your computer and use it in GitHub Desktop.
client.open(...);
client.click(...);
assert(new AssertionObject() {
@AfterRender
public void test() {
}
});
client.click1(...);
client.click2(...);
client.click3(...);
@aslakknutsen
Copy link

client.open(...);
client.click(...);

assert(new ServerAssertionObject() {
@AfterRender
public void test() {
}
});

client.click1(...);
assert(new ClientAssertionObject() {
@onload
public void test() {
}
});

client.click2(...);
client.click3(...);

@aslakknutsen
Copy link

TestClass

@drone Driver;

@RunAsClient
@UsingDataSet() @ShouldMatchDataSet()
TestMethod
Driver.open(url).serverAssert()....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment