Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Subject7 Player Installation

...

Alternatively, you can directly navigate to the test case you want to run and click Play.

2- Make sure that Java Development Kit is installed. You can download Oracle JDK or OpenJDK. The supported versions are 8-17

3- Once the executable file is downloaded, double click on it to set up the application.

...

12- When the break-point is reached or test case is paused, click Step Over button to play the unexecuted step. Step Over only executes one step at a time.

13- Once the step is played, the execution will pause again until you decide what to do next.

14- You can keep using Step Over to see what execution does. In case of errors or unexpected actions, you can do any debugging to the steps before continuing. Once finished debugging, you can click Play to resume from the last location or select a step to continue executing from there.The example from video below shows a test case that logs into Reference application, clears the birthday and adds a new one. It will demonstrate how Step Over works by pausing or adding a break-point before the birthday step, the test case pauses for you to decide what to do next. Once the birthday is verified to have been changed, the test case is then resumed which will save the profile and finally logs out of the application. Widget Connectorurlhttps://www.youtube.com/watch?v=aA6znzaqxeA&feature=youtu.be

15- You can also skip a step from execution by hovering over the step, hovering over the additional controls and choosing Skip, or by simply clicking the checkboxes next to each step and clicking the Skip icon from the toolbar. When you execute the test case, it will automatically step this step and move to the next one.

...