Skip to content

Commit 7acc161

Browse files
authored
Get latest ChromeDriver in Travis (#1421)
Get latest ChromeDriver in Travis and marking failing test as non critical
1 parent d3610e9 commit 7acc161

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ addons:
1414
before_install:
1515
- CDVERSION=`curl http://chromedriver.storage.googleapis.com/LATEST_RELEASE`
1616
- echo $CDVERSION
17-
- wget --no-verbose http://chromedriver.storage.googleapis.com/74.0.3729.6/chromedriver_linux64.zip
17+
- wget --no-verbose http://chromedriver.storage.googleapis.com/$CDVERSION/chromedriver_linux64.zip
1818
- unzip chromedriver_linux64.zip
1919
- sudo chmod u+x chromedriver
2020
- sudo mv chromedriver /usr/bin/

atest/acceptance/keywords/press_keys.robot

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,33 @@ Press Keys Normal Keys
1313
Wait Until Page Contains AAAAA
1414

1515
Press Keys Normal Keys Many Times
16+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
17+
... Selenium ActionChains
18+
[Tags] known issue chrome known issue headlesschrome
1619
Press Keys text_field AAAAA+BBB
1720
Click Button OK
1821
Wait Until Page Contains AAAAABBB
1922

2023
Press Keys Sends c++
24+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
25+
... Selenium ActionChains
26+
[Tags] known issue chrome known issue headlesschrome
2127
Press Keys text_field c++
2228
Click Button OK
2329
Wait Until Page Contains c+
2430

2531
Press Keys Normal Keys Many Arguments
32+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
33+
... Selenium ActionChains
34+
[Tags] known issue chrome known issue headlesschrome
2635
Press Keys text_field ccc DDDD
2736
Click Button OK
2837
Wait Until Page Contains cccDDDD
2938

3039
Press Keys Normal Keys Many Times With Many Args
40+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
41+
... Selenium ActionChains
42+
[Tags] known issue chrome known issue headlesschrome
3143
Press Keys text_field a+b C+D
3244
Click Button OK
3345
Wait Until Page Contains abCD
@@ -38,6 +50,9 @@ Press Keys Special Keys SHIFT
3850
Wait Until Page Contains CC
3951

4052
Press Keys Special Keys SHIFT Many Times
53+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
54+
... Selenium ActionChains
55+
[Tags] known issue chrome known issue headlesschrome
4156
Press Keys text_field SHIFT+cc SHIFT+dd
4257
Click Button OK
4358
Wait Until Page Contains CCDD timeout=3
@@ -52,16 +67,25 @@ Press Keys To Multiple Elements
5267
Page Should Contain Element //p[text()="tidii"] limit=4
5368

5469
Press Keys ASCII Code Send As Is
70+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
71+
... Selenium ActionChains
72+
[Tags] known issue chrome known issue headlesschrome
5573
Press Keys text_field \\108 \\13
5674
Click Button OK
5775
Wait Until Page Contains \\108\\13 timeout=3
5876

5977
Press Keys With Scandic Letters
78+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
79+
... Selenium ActionChains
80+
[Tags] known issue chrome known issue headlesschrome
6081
Press Keys text_field ÖÄÖÄÖ ÅÖÄP
6182
Click Button OK
6283
Wait Until Page Contains ÖÄÖÄÖÅÖÄP timeout=3
6384

6485
Press Keys With Asian Text
86+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
87+
... Selenium ActionChains
88+
[Tags] known issue chrome known issue headlesschrome
6589
Press Keys text_field 田中さんにあげ+て下 さい
6690
Click Button OK
6791
Wait Until Page Contains 田中さんにあげて下さい timeout=3

atest/acceptance/keywords/scroll_into_view.robot

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ ${TEXT}= You scrolled in div.
88

99
*** Test Cases ***
1010
Verify Scroll Element Into View
11+
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
12+
... Selenium ActionChains
13+
[Tags] known issue chrome known issue headlesschrome
1114
[Setup] Go To Page "scroll/index.html"
1215
${initial_postion}= Get Vertical Position css:#target
1316
Scroll Element Into View css:#target

0 commit comments

Comments
 (0)