@@ -16,7 +16,7 @@ class SyntheticsStepType(ModelSimple):
1616 """
1717 Step type used in your Synthetic test.
1818
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"].
2020 :type value: str
2121 """
2222
@@ -30,6 +30,7 @@ class SyntheticsStepType(ModelSimple):
3030 "assertFromJavascript" ,
3131 "assertPageContains" ,
3232 "assertPageLacks" ,
33+ "assertRequests" ,
3334 "click" ,
3435 "extractFromJavascript" ,
3536 "extractVariable" ,
@@ -56,6 +57,7 @@ class SyntheticsStepType(ModelSimple):
5657 ASSERT_FROM_JAVASCRIPT : ClassVar ["SyntheticsStepType" ]
5758 ASSERT_PAGE_CONTAINS : ClassVar ["SyntheticsStepType" ]
5859 ASSERT_PAGE_LACKS : ClassVar ["SyntheticsStepType" ]
60+ ASSERT_REQUESTS : ClassVar ["SyntheticsStepType" ]
5961 CLICK : ClassVar ["SyntheticsStepType" ]
6062 EXTRACT_FROM_JAVASCRIPT : ClassVar ["SyntheticsStepType" ]
6163 EXTRACT_VARIABLE : ClassVar ["SyntheticsStepType" ]
@@ -89,6 +91,7 @@ def openapi_types(_):
8991SyntheticsStepType .ASSERT_FROM_JAVASCRIPT = SyntheticsStepType ("assertFromJavascript" )
9092SyntheticsStepType .ASSERT_PAGE_CONTAINS = SyntheticsStepType ("assertPageContains" )
9193SyntheticsStepType .ASSERT_PAGE_LACKS = SyntheticsStepType ("assertPageLacks" )
94+ SyntheticsStepType .ASSERT_REQUESTS = SyntheticsStepType ("assertRequests" )
9295SyntheticsStepType .CLICK = SyntheticsStepType ("click" )
9396SyntheticsStepType .EXTRACT_FROM_JAVASCRIPT = SyntheticsStepType ("extractFromJavascript" )
9497SyntheticsStepType .EXTRACT_VARIABLE = SyntheticsStepType ("extractVariable" )
0 commit comments