File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ suite(function (env) {
19
19
let inputField = await driver . findElement ( By . name ( 'no_type' ) ) ;
20
20
await inputField . clear ( ) ;
21
21
await inputField . sendKeys ( 'Selenium' ) ;
22
- assert . strictEqual ( await inputField . getText ( ) , "Selenium" ) ;
22
+ const text = await inputField . getAttribute ( 'value' ) ;
23
+ assert . strictEqual ( text , "Selenium" ) ;
23
24
} catch ( e ) {
24
25
console . log ( e )
25
26
}
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ gem 'rspec', '~> 3.0'
8
8
gem 'rubocop' , '~> 1.35'
9
9
gem 'rubocop-rspec' , '~> 2.12'
10
10
gem 'selenium-devtools' , '= 0.125.0'
11
- gem 'selenium-webdriver' , '= 4.20 .1'
11
+ gem 'selenium-webdriver' , '= 4.21 .1'
Original file line number Diff line number Diff line change 57
57
rubyzip (2.3.2 )
58
58
selenium-devtools (0.125.0 )
59
59
selenium-webdriver (~> 4.2 )
60
- selenium-webdriver (4.20 .1 )
60
+ selenium-webdriver (4.21 .1 )
61
61
base64 (~> 0.2 )
62
62
rexml (~> 3.2 , >= 3.2.5 )
63
63
rubyzip (>= 1.2.2 , < 3.0 )
@@ -80,7 +80,7 @@ DEPENDENCIES
80
80
rubocop (~> 1.35 )
81
81
rubocop-rspec (~> 2.12 )
82
82
selenium-devtools (= 0.125.0 )
83
- selenium-webdriver (= 4.20 .1 )
83
+ selenium-webdriver (= 4.21 .1 )
84
84
85
85
BUNDLED WITH
86
86
2.5.6
You can’t perform that action at this time.
0 commit comments