Skip to content

Topics To Add

Itai Agmon edited this page Aug 9, 2017 · 4 revisions

Topics to add to the JSystem Documentation.

  • Return Params - Add more details to the example of the return parameter with screenshot of the GUI with the usage of the reference
  • Data Driven - Document the data driven
  • Validation
  • Context menu plugin
  • Tab plugin
  • Adding system objects without the SUT
		cliConnection = new LinuxDefaultCliConnection();
		cliConnection.setParent(this);
		cliConnection.setName("linuxCliConnection");
		cliConnection.setHost(HOST);
		cliConnection.setUser(USER);
		cliConnection.setPassword(PASSWORD);
		cliConnection.setConnectOnInit(true);
		cliConnection.init();
		SystemManagerImpl.getInstance().addSystemObject(cliConnection);
Clone this wiki locally