Class PageAssertions.HasURLOptions
- java.lang.Object
-
- com.microsoft.playwright.assertions.PageAssertions.HasURLOptions
-
- Enclosing interface:
- PageAssertions
public static class PageAssertions.HasURLOptions extends Object
-
-
Field Summary
Fields Modifier and Type Field Description BooleanignoreCaseWhether to perform case-insensitive match.DoubletimeoutTime to retry the assertion for in milliseconds.
-
Constructor Summary
Constructors Constructor Description HasURLOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PageAssertions.HasURLOptionssetIgnoreCase(boolean ignoreCase)Whether to perform case-insensitive match.PageAssertions.HasURLOptionssetTimeout(double timeout)Time to retry the assertion for in milliseconds.
-
-
-
Method Detail
-
setIgnoreCase
public PageAssertions.HasURLOptions setIgnoreCase(boolean ignoreCase)
Whether to perform case-insensitive match.ignoreCaseoption takes precedence over the corresponding regular expression flag if specified.
-
setTimeout
public PageAssertions.HasURLOptions setTimeout(double timeout)
Time to retry the assertion for in milliseconds. Defaults to5000.
-
-