Here's a sample script: from paraview.simple import * # Get a list of all available timesteps. timeKeeper = GetTimeKeeper() timesteps = timeKeeper.TimestepValues # Now make animation scene go to a specific timestep: scene = GetAnimationScene() scene.AnimationTime = timesteps[5] # assuming 5 > len(timesteps)