Skip to content

Commit

Permalink
Refactor chrome options
Browse files Browse the repository at this point in the history
  • Loading branch information
yagoluiz committed Mar 29, 2024
1 parent a32712e commit d51edb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Juridical.Core/Builders/LegalProcessBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class LegalProcessBuilder
public LegalProcessBuilder(string uri)
{
var options = new ChromeOptions();
options.AddArguments("--no-sandbox", "--headless", "--disable-dev-shm-usage");
options.AddArgument("--headless");

_webDriver = new RemoteWebDriver(new Uri(uri), options);
_legalProcess = new LegalProcess();
Expand Down

0 comments on commit d51edb9

Please sign in to comment.