Katalon Flashcards

1
Q

How do you create a new test suite?

A

Click on the plus symbol in the top left beside the folder icon, and enter the name of the test suite.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you add test cases to a test suite?

A

Click on the three dots beside the test suite name, and then click on “add new test case” from the dropdown menu and then enter the test case name and click the ok button or hit enter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you rename test cases in a test suite?

A

Click on the three dots beside the test suite name, and then click on “rename test suite” from the dropdown menu

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you remove a test case?

A

Click on the three dots beside the test case name, and then click on “remove test case” from the dropdown menu

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you record your every click and keystroke to be easily repeated and automated?

A

Open the url you would like to start the recording at. Then click on the record button in the top left corner of the katalon recorder. This will bring the browser back into focus and everything you do will be recorded as macros.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you play a single test case?

A

Make sure the test case is selected and click the play button at the top of the katalon recorder.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you play a single test suite?

A

Make sure the test suite is selected and click the play suite button at the top of the katalon recorder.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you play all of the test suites?

A

Make sure the first test suite is selected and click the play all button at the top of the katalon recorder.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you speed up and slow down the speed that the katalon recorder plays the test cases.

A

Click on the speedometer icon in the top right of the katalon recorder and toggle the slider to the speed you would like.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you export the test suites into coding scripts?

A

Click on the export button at the top of the katalon recorder, then choose the format (programming language) you would like the script to be exported to, and either copy to clipboard or save script as.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you manually add a test step (command) in a test case?

A

You can either click on the plus icon in the test case window beside the garbage can icon, or right click inside the test case window and click add command from the dropdown menu. Then you have to manually pick what type of command you would like the create, and the target/value parameters if needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you verify a link in katalon?

A

when in record mode, right click on the link, click on the katalon recorder drop down item and then click on the VerifyText item.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you verify certain text on a page in katalon?

A

First highlight the appropriate text you would like to verify, then right click on the highlighted text, click on the katalon recorder drop down item and then click on the VerifyText item.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you edit or delete a test step (command) in a test case?

A

Right click on the test step (command) in the test case window, and click on either delete command or edit command, depending on what you would like to do.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you save a test suite?

A

Click on the 3 dots beside the test suite name, and click on the save

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are all the Steps necessary when testing software?

A

First we man a test plan that describes what will be done during testing. Then we make a list of all of the test cases( use cases are often used to build test cases) Then we use the testing and automation tools to run the test cases, diving deeper into tests if and when bugs are found to establish the root of the problem. Then we use a method or system to document the buds/problems (bug report) Then we document the metrics, statistics and summarize what was discovered and possible solutions

17
Q

When explaining how to run the test suites to a novice, what is important to make known?

A

The proper order the test suites should be executed in.

18
Q

What is the VerifyTextPresent command used for?

A

Will verify if text is somewhere on the page - obtained by manually entering into script

19
Q

What does the open command do?

A

Goes to a website - obtained by recording

20
Q

What are the 3 ways scripts can be added?

A

Recorded, Obtained through context menu (right clicking on element while in recording mode) or manuallly entered into the script.

21
Q

What does the type command do?

A

It will put information into a form field - done by recording

22
Q

What does the verify value command do?

A

This will verify form elements like radio buttons and check boxes - Obtained through context menu

23
Q

What does the verify text command do?

A

Will verify the text value and location of the text field on a web page - Obtained through context menu

24
Q

What doe the verifyTextNotPresent command do?

A

Will verify if text is NOT somewhere on the page - obtained by manually entering into script