File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/aquality/selenium/core/visualization
test/java/tests/applications/browser Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
import java .util .stream .Collectors ;
15
15
16
16
public class DumpManager <T extends IElement > implements IDumpManager {
17
- private static final String INVALID_CHARS_REGEX = "[\\ \\ /|\\ \\ \\ \\ | \\ \\ *| \\ \\ :| \\ \\ || \\ \" | \\ '| \\ \\ <| \\ \\ >| \\ \\ {| \\ \\ }| \\ \\ ?| \\ \\ %| ,]" ;
17
+ private static final String INVALID_CHARS_REGEX = "[\\ \\ /|*: \" '<>{}?% ,]" ;
18
18
19
19
private final Map <String , T > elementsForVisualization ;
20
20
private final String formName ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class ChromeApplication implements IApplication {
12
12
private final RemoteWebDriver driver ;
13
13
14
14
ChromeApplication (long implicitWaitSeconds ) {
15
- driver = new ChromeDriver (new ChromeOptions ().addArguments ("--headless" ). addArguments ( "--remote-allow-origins=*" ));
15
+ driver = new ChromeDriver (new ChromeOptions ().addArguments ("--headless" , "--remote-allow-origins=*" ));
16
16
setImplicitWaitTimeout (Duration .ofSeconds (implicitWaitSeconds ));
17
17
}
18
18
You can’t perform that action at this time.
0 commit comments