Execute a Test Case or a Test Suite


This is a companion discussion topic for the original entry at https://docs.katalon.com/katalon-studio/docs/execute-a-test-case-or-a-test-suite.html

Hello,
I does not achieve to get browser chrome in “Execute from here” contextual menu when I have launched “open browser” within Script tab.
I have a “run from here” menu instead, and it does not have chrome browser in it. I have only an item named “McAffe web gatewa…”

How does I manage to get chrome appear in this menu please ?

Hi, I have a question, Can I execute a test case continuously? I want to run a test case for at least 100 times automatically, is it possible ?

Hi @baharedadrasi

You can simply create another test case then write something like this:

import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI

for(int i = 0; i < 100; i ++) {
     WebUI.callTestCase(findTestCase("Id of your test case"), [:]);
}