Skip to content

Commit

Permalink
refac(service): set locale in PlaywrightService (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElementalMP4 committed Aug 5, 2021
1 parent 52e04b3 commit 0ac712f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class PlaywrightService {

private NewContextOptions getContextOptions() {
return new Browser.NewContextOptions()
.setViewportSize(1000, 1000);
.setViewportSize(1000, 1000)
.setLocale("en-GB");
}

public PlaywrightService() {
Expand Down

0 comments on commit 0ac712f

Please sign in to comment.