Merge pull request #1073 from visagang/features/vguruparan

Update locating element log level to warning
This commit is contained in:
Haiping 2025-06-11 08:58:41 -05:00 committed by GitHub
commit 6f0754c143
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -29,6 +29,7 @@ public class ElementLocatingArgs
public bool Parent { get; set; }
public bool FailIfMultiple { get; set; }
[JsonPropertyName("ignore_if_not_found")]
public bool IgnoreIfNotFound { get; set; }
/// <summary>

View file

@ -11,6 +11,10 @@
"is_read_content": {
"type": "boolean",
"description": "read the content"
},
"ignore_if_not_found": {
"type": "boolean",
"description": "ignore error logging if element not exists"
}
},
"required": [ "selector" ]