Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I've used Selenium. (Download from <a href="http://seleniumhq.org" rel="nofollow">http://seleniumhq.org</a>)</p> <p>You can use firefox to create the tests (it's a bit like creating macros). Then you can re-run them later or use the test server to automate a large series of tests.</p> <p>Below I've included the source to a basic test to log into the Bonita User Experience and kick off a process.</p> <p>Replace SERVERIPADDRESS, MYUSERNAME and MYPASSWORD with your details.</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head profile="http://selenium-ide.openqa.org/profiles/test-case"&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &lt;link rel="selenium.base" href="http://SERVERIPADDRESS:8080/bonita/" /&gt; &lt;title&gt;New Test&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;table cellpadding="1" cellspacing="1" border="1"&gt; &lt;thead&gt; &lt;tr&gt;&lt;td rowspan="1" colspan="3"&gt;New Test&lt;/td&gt;&lt;/tr&gt; &lt;/thead&gt;&lt;tbody&gt; &lt;tr&gt; &lt;td&gt;open&lt;/td&gt; &lt;td&gt;/&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;clickAndWait&lt;/td&gt; &lt;td&gt;link=Business Process Management&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;type&lt;/td&gt; &lt;td&gt;id=username&lt;/td&gt; &lt;td&gt;MYUSERNAME&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;typeAndWait&lt;/td&gt; &lt;td&gt;name=password&lt;/td&gt; &lt;td&gt;MYPASSWORD&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;click&lt;/td&gt; &lt;td&gt;css=div.gwt-Label&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;click&lt;/td&gt; &lt;td&gt;css=div.menu_choice&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;click&lt;/td&gt; &lt;td&gt;css=button.bonita_form_button&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload