private boolean runBody()

in mustella/src/main/java/marmotinni/TestCase.java [174:191]


	private boolean runBody(WebDriver webDriver)
	{
		if (!testResult.hasStatus()) 
		{ 
			if (body != null)
			{
				testResult.phase = TestResult.BODY;
				currentIndex = 0;
				currentSteps = body;
				numSteps = body.size();
				// return if we need to wait for something
				if (!runSteps(webDriver))
					return false;
				
			}
		}
		return runCleanup(webDriver);
	}