@@ -16,7 +16,7 @@ class SyntheticsStepType(ModelSimple):
16
16
"""
17
17
Step type used in your Synthetic test.
18
18
19
- :param value: Must be one of ["assertCurrentUrl", "assertElementAttribute", "assertElementContent", "assertElementPresent", "assertEmail", "assertFileDownload", "assertFromJavascript", "assertPageContains", "assertPageLacks", "click", "extractFromJavascript", "extractVariable", "goToEmailLink", "goToUrl", "goToUrlAndMeasureTti", "hover", "playSubTest", "pressKey", "refresh", "runApiTest", "scroll", "selectOption", "typeText", "uploadFiles", "wait"].
19
+ :param value: Must be one of ["assertCurrentUrl", "assertElementAttribute", "assertElementContent", "assertElementPresent", "assertEmail", "assertFileDownload", "assertFromJavascript", "assertPageContains", "assertPageLacks", "assertRequests", " click", "extractFromJavascript", "extractVariable", "goToEmailLink", "goToUrl", "goToUrlAndMeasureTti", "hover", "playSubTest", "pressKey", "refresh", "runApiTest", "scroll", "selectOption", "typeText", "uploadFiles", "wait"].
20
20
:type value: str
21
21
"""
22
22
@@ -30,6 +30,7 @@ class SyntheticsStepType(ModelSimple):
30
30
"assertFromJavascript" ,
31
31
"assertPageContains" ,
32
32
"assertPageLacks" ,
33
+ "assertRequests" ,
33
34
"click" ,
34
35
"extractFromJavascript" ,
35
36
"extractVariable" ,
@@ -56,6 +57,7 @@ class SyntheticsStepType(ModelSimple):
56
57
ASSERT_FROM_JAVASCRIPT : ClassVar ["SyntheticsStepType" ]
57
58
ASSERT_PAGE_CONTAINS : ClassVar ["SyntheticsStepType" ]
58
59
ASSERT_PAGE_LACKS : ClassVar ["SyntheticsStepType" ]
60
+ ASSERT_REQUESTS : ClassVar ["SyntheticsStepType" ]
59
61
CLICK : ClassVar ["SyntheticsStepType" ]
60
62
EXTRACT_FROM_JAVASCRIPT : ClassVar ["SyntheticsStepType" ]
61
63
EXTRACT_VARIABLE : ClassVar ["SyntheticsStepType" ]
@@ -89,6 +91,7 @@ def openapi_types(_):
89
91
SyntheticsStepType .ASSERT_FROM_JAVASCRIPT = SyntheticsStepType ("assertFromJavascript" )
90
92
SyntheticsStepType .ASSERT_PAGE_CONTAINS = SyntheticsStepType ("assertPageContains" )
91
93
SyntheticsStepType .ASSERT_PAGE_LACKS = SyntheticsStepType ("assertPageLacks" )
94
+ SyntheticsStepType .ASSERT_REQUESTS = SyntheticsStepType ("assertRequests" )
92
95
SyntheticsStepType .CLICK = SyntheticsStepType ("click" )
93
96
SyntheticsStepType .EXTRACT_FROM_JAVASCRIPT = SyntheticsStepType ("extractFromJavascript" )
94
97
SyntheticsStepType .EXTRACT_VARIABLE = SyntheticsStepType ("extractVariable" )
0 commit comments