java_script_timeout property

java_script_timeout property

Gets or sets TimeSpan which limits JavaScript execution time. If script is executed longer than provided TimeSpan, it will be cancelled. You can specify infinite timeout by setting TimeSpan equal to -1 millisecond. Default value is 1 minute.

Definition:

@property
def java_script_timeout(self):
    ...
@java_script_timeout.setter
def java_script_timeout(self, value):
    ...

See Also