No such file to load error

58 views
Skip to first unread message

Juhi Choudhary

unread,
Dec 23, 2010, 5:43:46 AM12/23/10
to rubyonra...@googlegroups.com
Hi
I am using ruby with selenium to automate my test. But when I execute
my test case in eclipse IDE I am getting the following error

<internal:lib/rubygems/custom_require>:29:in `require': no such file to
load -- test1 (LoadError)
from <internal:lib/rubygems/custom_require>:29:in `require'
from
D:/Juhi_Project/.metadata/.plugins/org.rubypeople.rdt.testunit/ruby/RemoteTestRunner.rb:301:in
`<main>'


My source code is

require "test/unit"
require "rubygems"
gem "selenium-client"
require "selenium/client"

class Test1 < Test::Unit::TestCase
def setup
@verification_errors = []
@selenium = Selenium::Client::Driver.new \
:host => "localhost",
:port => 4444,
:browser => "*chrome",
:url => "http://www.tutorialspoint.com/",
:timeout_in_second => 60
@selenium.start_new_browser_session
end
def teardown
@selenium.close_current_browser_session
assert_equal [], @verification_errors
end
def test_test1
@selenium.open "/ruby/ruby_hashes.htm"
@selenium.click "link=Ruby Date & Time"
@selenium.wait_for_page_to_load "30000"
@selenium.type "q", "module"
@selenium.click "//input[@name='sitesearch' and
@value='www.tutorialspoint.com']"
@selenium.click "sa"
@selenium.click "link=Ruby Ranges"
@selenium.wait_for_page_to_load "30000"
@selenium.click "link=Ruby Iterators"
@selenium.wait_for_page_to_load "30000"
end
end


When I run this from command line it,s working fine. I have ruby1.9,
ruby-gems1.3.7,RSpec2.3.0,rails3.0.3.

Thanks in advance

--
Posted via http://www.ruby-forum.com/.

BenJWoodcroft

unread,
Jan 10, 2011, 7:01:17 PM1/10/11
to Ruby on Rails: Talk
This is perhaps caused by an upgrade of ruby. In 1.9.2, the current
directory "." is no longer included in the path, as it previously was?
See http://stackoverflow.com/questions/2900370/why-does-ruby-1-9-2-remove-from-load-path-and-whats-the-alternative
for what I mean.

Since the error says it cannot find test1 (which I presume is the name
of your script you have shown the code of), the problem likely lies
outside your test file, so the source of that file is of now help.
Hope that makes sense.

ben

Gene Dela Cruz

unread,
Dec 8, 2014, 6:11:39 AM12/8/14
to rubyonra...@googlegroups.com
I'm getting this error in my script. Can someone help me figure out what
I'm missing on my code. Thank you.

Gem::LoadError: Could not find selenium-client (>= 0) amongst
[actionmailer-2.3.8, actionpack-2.3.8, activerecord-2.3.8,
activerecord-jdbc-adapter-0.9.6-java,
activerecord-jdbcmysql-adapter-0.9.6-java,
activerecord-jdbcpostgresql-adapter-0.9.6-java, activeresource-2.3.8,
activesupport-2.3.8, columnize-0.3.6, diff-lcs-1.1.3, jdbc-mysql-5.0.4,
jdbc-postgres-8.4.702-java, linecache-0.46-java, rack-1.1.0,
rails-2.3.8, rake-10.0.4, rake-10.0.3, rcov-0.8.1.5.0-java,
rspec-2.13.0, rspec-core-2.13.1, rspec-expectations-2.13.0,
rspec-mocks-2.13.0, ruby-debug-0.10.5.rc2,
ruby-debug-base-0.10.5.rc2-java, ruby-debug-ide-0.4.17.beta14]

to_specs at
C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems/dependency.rb:247
to_spec at
C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems/dependency.rb:256
gem at
C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems.rb:1231
(root) at C:\Users\gene\Projects\lib\roche.rb:3

Colin Law

unread,
Dec 8, 2014, 8:46:16 AM12/8/14
to rubyonra...@googlegroups.com
On 8 December 2014 at 11:10, Gene Dela Cruz <li...@ruby-forum.com> wrote:
> I'm getting this error in my script. Can someone help me figure out what
> I'm missing on my code. Thank you.
>
> Gem::LoadError: Could not find selenium-client (>= 0) amongst
> [actionmailer-2.3.8, actionpack-2.3.8, activerecord-2.3.8,
> activerecord-jdbc-adapter-0.9.6-java,
> activerecord-jdbcmysql-adapter-0.9.6-java,
> activerecord-jdbcpostgresql-adapter-0.9.6-java, activeresource-2.3.8,
> activesupport-2.3.8, columnize-0.3.6, diff-lcs-1.1.3, jdbc-mysql-5.0.4,
> jdbc-postgres-8.4.702-java, linecache-0.46-java, rack-1.1.0,
> rails-2.3.8, rake-10.0.4, rake-10.0.3, rcov-0.8.1.5.0-java,
> rspec-2.13.0, rspec-core-2.13.1, rspec-expectations-2.13.0,
> rspec-mocks-2.13.0, ruby-debug-0.10.5.rc2,
> ruby-debug-base-0.10.5.rc2-java, ruby-debug-ide-0.4.17.beta14]

Have you run
bundle install

Colin

>
> to_specs at
> C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems/dependency.rb:247
> to_spec at
> C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems/dependency.rb:256
> gem at
> C:/Users/gene/AppData/Roaming/NetBeans/8.0.1/jruby/lib/ruby/shared/rubygems.rb:1231
> (root) at C:\Users\gene\Projects\lib\roche.rb:3
>
> --
> Posted via http://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/6c32ceef0a654af6ff53771bf399883d%40ruby-forum.com.
> For more options, visit https://groups.google.com/d/optout.

Gene Dela Cruz

unread,
Dec 8, 2014, 8:38:05 PM12/8/14
to rubyonra...@googlegroups.com
I'm using windows 7. How to install that in command line?

Colin Law

unread,
Dec 9, 2014, 4:39:54 AM12/9/14
to rubyonra...@googlegroups.com
On 9 December 2014 at 01:36, Gene Dela Cruz <li...@ruby-forum.com> wrote:
> I'm using windows 7. How to install that in command line?

Please quote the previous message so that it is easier to follow the
thread, we cannot tell whether which post you are responding to so
don't know whether you need help installing bundle or something else.
Remember this is a mailing list not a forum, though you may be using a
forum like interface to post to it.

Since you are using Windows you may find it more difficult to get
help, most Rails developers use Linux or Mac. My recommendation for
Win users is to either dual boot the machine with, for example,
Ubuntu, or run Ubuntu in a virtual machine such as VirtualBox.

So I can't help with your specific question I am afraid, (even when
you tell us what you cannot install).

Colin
Reply all
Reply to author
Forward
0 new messages