@@ -906,7 +906,7 @@ def WaitFieldValue(self, field, expected_value):
906906 """
907907 self .__webapp .WaitFieldValue (field , expected_value )
908908
909- def WaitHide (self , string , timeout = None , throw_error = True ):
909+ def WaitHide (self , string , timeout = None , throw_error = True , match_case = False ):
910910 """
911911 Search string that was sent and wait hide the elements.
912912
@@ -920,9 +920,10 @@ def WaitHide(self, string, timeout=None, throw_error = True):
920920 >>> # Calling the method:
921921 >>> oHelper.WaitHide("Processing")
922922 """
923- self .__webapp .WaitHide (string , timeout , throw_error = True )
923+ self .__webapp .WaitHide (string , timeout , throw_error , match_case )
924924
925- def WaitProcessing (self , string ):
925+
926+ def WaitProcessing (self , string , match_case = False ):
926927 """
927928 Uses WaitShow and WaitHide to Wait a Processing screen
928929
@@ -934,9 +935,9 @@ def WaitProcessing(self, string):
934935 >>> # Calling the method:
935936 >>> oHelper.WaitProcessing("Processing")
936937 """
937- self .__webapp .WaitProcessing (string )
938+ self .__webapp .WaitProcessing (string , match_case )
938939
939- def WaitShow (self , string , timeout = None , throw_error = True ):
940+ def WaitShow (self , string , timeout = None , throw_error = True , match_case = False ):
940941 """
941942 Search string that was sent and wait show the elements.
942943
@@ -950,7 +951,7 @@ def WaitShow(self, string, timeout=None, throw_error = True):
950951 >>> # Calling the method:
951952 >>> oHelper.WaitShow("Processing")
952953 """
953- self .__webapp .WaitShow (string , timeout , throw_error = True )
954+ self .__webapp .WaitShow (string , timeout , throw_error , match_case )
954955
955956 def IfExists (self , string = '' , timeout = 5 ):
956957 """
0 commit comments