Skip to content

Commit 0a9ad02

Browse files
committed
adding pst utils and updating test file
1 parent 7a97943 commit 0a9ad02

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
99
libpq-dev \
1010
unzip \
1111
curl \
12+
pst-utils \
1213
&& rm -rf /var/lib/apt/lists/*
1314

1415
WORKDIR /app

test_browser.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@
66
chrome_options.add_argument('--no-sandbox')
77
chrome_options.add_argument('--disable-dev-shm-usage')
88
chrome_options.add_argument('--disable-extensions')
9-
chrome_options.add_argument('--window-size=1920,882')
10-
11-
# https://howbigismybrowser.com/
12-
# info.lets.qa
9+
chrome_options.add_argument('--window-size=1920,1080')
1310

1411
browser = Watir::Browser.new(:chrome, options: chrome_options)
1512
browser.goto('https://example.com')
16-
puts browser.title
13+
puts browser.title
1714
browser.close

0 commit comments

Comments
 (0)