2017-02-20 31 views
1
I am trying to run this below code, then I got code error: 

红宝石/ 2.3.0 /的rubygems/core_ext /kernel_require.rb:55:in`要求:不能加载这样的文件 - 硒的webdriver(LoadError)红宝石/ 2.3.0 /的rubygems/core_ext/kernel_require.rb:55:在`需要':不能加载这样的文件 - 硒 - 的webdriver(LoadError)

我无法找到我错过了什么,请帮助我这个

require "selenium-webdriver" 

# Firefox browser instantiation 
driver = Selenium::WebDriver.for :firefox 

#Loading the assertselenium URL 
driver.navigate.to "http://www.assertselenium.com" 

#Clicking on the Follow link present on the assertselenium home page 
FollowButton = driver.find_element(:link, "Follow") 
FollowButton.click 

#Typing the UserName 
LoginButton = driver.find_element(:id, "user_login") 
LoginButton.send_keys "sampleuser77dff27" 

#Typing the Email-Id 
EmailId = driver.find_element(:id, "user_email") 
EmailId.send_keys "[email protected]" 

#Clicking on the Submit Button 
SubmitButton = driver.find_element(:id, "wp-submit") 
SubmitButton.click 

#Asserting whether the registration success message is diaplyed 
SuccessMessage = driver.find_element(:css, "p.message") 
"Registration complete. Please check your e-mail.".eql? SuccessMessage.text 
puts "Successfully completed the user registration and validated the Success message" 
#Quitting the browser 
driver.quit 
+0

有很多可能的答案可以通过谷歌搜索。你能让我们知道他们为什么不帮你吗? – Burki

回答

0

尝试加入:

require 'rubygems' 

在此脚本的顶部。如果你仍然得到同样的错误,然后安装宝石:

gem install selenium-webdriver 

希望它能帮助。

-1

当我收到“Kernel-require”错误时,我已经打开了多个项目。然后我在另一个窗口中打开了我的项目,并再次使用了require语句。 它为我工作。

相关问题