RE: Script error in performance test

Posted by viji1188 on
URL: http://ngrinder.373.s1.nabble.com/Script-error-in-performance-test-tp90p92.html

Hi

I tried with the response code 302, but i still receive the error (SCRIPT_ERROR). I tried another URL i.e. "http://www.jumpstart.com/" with response code 200 and received SCRIPT_ERROR again.
Script:

from net.grinder.script.Grinder import grinder
from net.grinder.script import Test
from net.grinder.plugin.http import HTTPRequest

test1 = Test(1, "Test1")
request1 = test1.wrap(HTTPRequest())

class TestRunner:
        def __call__(self):
                grinder.statistics.delayReports=True
               
                result = request1.GET("http://www.jumpstart.com/")
               
                if result.getStatusCode() == 200 :
                        grinder.statistics.forLastTest.success = 1
                else :
                        grinder.statistics.forLastTest.success = 0

Could you please help with this.