Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ addons:
before_install:
- CDVERSION=`curl http://chromedriver.storage.googleapis.com/LATEST_RELEASE`
- echo $CDVERSION
- wget --no-verbose http://chromedriver.storage.googleapis.com/74.0.3729.6/chromedriver_linux64.zip
- wget --no-verbose http://chromedriver.storage.googleapis.com/$CDVERSION/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo chmod u+x chromedriver
- sudo mv chromedriver /usr/bin/
Expand Down
24 changes: 24 additions & 0 deletions atest/acceptance/keywords/press_keys.robot
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,33 @@ Press Keys Normal Keys
Wait Until Page Contains AAAAA

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

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

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

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

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

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

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

Press Keys With Asian Text
[Documentation] Marked temporally as non-critical because Chrome 76 has bug with
... Selenium ActionChains
[Tags] known issue chrome known issue headlesschrome
Press Keys text_field 田中さんにあげ+て下 さい
Click Button OK
Wait Until Page Contains 田中さんにあげて下さい timeout=3
Expand Down
3 changes: 3 additions & 0 deletions atest/acceptance/keywords/scroll_into_view.robot
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ ${TEXT}= You scrolled in div.

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