Skip to content

Commit

Permalink
Remove unnecessary patch for recorder due to solved issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rabelenda-abstracta committed Mar 12, 2024
1 parent 2fcc12c commit 09eae93
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ private ChromeOptions buildChromeOptions(String recordingProxy, List<String> arg
proxy.setHttpProxy(recordingProxy);
proxy.setSslProxy(recordingProxy);
ret.setProxy(proxy);
/*
remote-allow-origins is required due to this issue:
https://github.com/SeleniumHQ/selenium/issues/11750
*/
ret.addArguments("--incognito", "--proxy-bypass-list=<-loopback>", "--remote-allow-origins=*");
ret.addArguments("--incognito", "--proxy-bypass-list=<-loopback>");
ret.addArguments(args);
ret.setAcceptInsecureCerts(true);
return ret;
Expand Down

0 comments on commit 09eae93

Please sign in to comment.