use of code.satyagraha.gfm.viewer.bots.PreferencesBot in project gfm_viewer by satyagraha.
the class MarkdownViewTest method shouldShowPreferencesViaToolbar.
@Test
public void shouldShowPreferencesViaToolbar() throws Exception {
LOGGER.info("");
assertThat(MarkdownViewBot.isPresent(), is(false));
MarkdownViewBot markdownViewBot1 = MarkdownViewBot.open();
assertThat(MarkdownViewBot.isPresent(), is(true));
SWTUtils.sleep(2000);
PreferencesBot preferencesBot = markdownViewBot1.showPreferences();
preferencesBot.cancel();
markdownViewBot1.close();
}
Aggregations