snoops
September 29, 2006, 8:06am
1
Hi,
I have a problem here.
I have a ruby code that opens Google, types “book stores” and clicks on
“Search” button.
Code Snippet Begins here
require ‘net/http’
require ‘uri’
require ‘watir’
term=“book stores”
url1 = ‘http://www.google.com ’
ie = Watir::IE.start(url1)
ie.text_field(:name, “q”).set(term)
ie.button(:name, “btnG”).click
Code Snippet Ends here
Now I need to obtain the value of the response URL generated by this
search and assign it to a variable.
[ i.e. book stores - Google Search ]
How do I read the HTTP Header information for the “location” attribute?
Any help is greatly appreciated.
Thanks,
Madu
snoops
September 30, 2006, 12:11am
2
Any help appreciated… Please let know.
Thanks again,
Madu
Madu Nar wrote:
Hi,
I have a problem here.
I have a ruby code that opens Google, types “book stores” and clicks on
“Search” button.
Code Snippet Begins here
require ‘net/http’
require ‘uri’
require ‘watir’
term=“book stores”
url1 = ‘http://www.google.com ’
ie = Watir::IE.start(url1)
ie.text_field(:name, “q”).set(term)
ie.button(:name, “btnG”).click
Code Snippet Ends here
Now I need to obtain the value of the response URL generated by this
search and assign it to a variable.
[ i.e. book stores - Google Search ]
How do I read the HTTP Header information for the “location” attribute?
Any help is greatly appreciated.
Thanks,
Madu
snoops
September 30, 2006, 1:50am
3
On Sep 30, 2006, at 1:11 AM, Madu Nar wrote:
How do I read the HTTP Header information for the “location”
attribute?
Any help is greatly appreciated.
Thanks,
Madu
I have no experience with Watir whatsoever, but the docs show there’s
a url() method.
http://wtr.rubyforge.org/rdoc/classes/Watir/IE.html#M000293
Did you check it out?
Andrei
snoops
October 1, 2006, 12:34am
4
Andrei M. wrote:
On Sep 30, 2006, at 1:11 AM, Madu Nar wrote:
How do I read the HTTP Header information for the “location”
attribute?
Any help is greatly appreciated.
Thanks,
Madu
I have no experience with Watir whatsoever, but the docs show there’s
a url() method.
http://wtr.rubyforge.org/rdoc/classes/Watir/IE.html#M000293
Did you check it out?
Andrei
Thanks Andrei,
Did try the url() function from Watir but that did not work and gave me
the following exceptions…
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1405:in method_missing' c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1405:in
wait’
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1404:in upto' c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1404:in
wait’
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:2014:in `click’
nethttp_1.rb:16
W, [30-Sep-2006 15:33:33#2288] WARN – : frame error in waitdocument
OLE error code:80070005 in
Access is denied.
HRESULT error code:0x80020009
Exception occurred.
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1405:in method_missing' c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1405:in
wait’
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1404:in upto' c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:1404:in
wait’
nethttp_1.rb:22
I am still trying but not successful yet.
Thanks,
Madu
snoops
October 11, 2006, 2:51am
5
How do I read the HTTP Header information for the “location” attribute?
Any help is greatly appreciated.
This information is not available in Watir. You could use a http proxy
to get this information.
Bret
snoops
October 18, 2006, 10:39am
6
You can try SWExplorerAutomation SWEA (http://webunittesting.com ).
Example:
require ‘rubyclr’
RubyClr::reference ‘System’
RubyClr::reference ‘SWExplorerAutomationClient’
include SWExplorerAutomation::Client
include SWExplorerAutomation::Client::Controls
include SWExplorerAutomation::Client::DialogControls
explorerManager = ExplorerManager.new
explorerManager.Connect(-1)
explorerManager.LoadProject(‘google.htp’)
explorerManager.Navigate(‘http://www.google.com/ ’)
scene = explorerManager[‘Scene_0’]
scene.WaitForActive(30000)
scene[“q”].Value = ‘c#’
scene[‘btnG’].Click()
scene = explorerManager[‘Scene_1’]
scene.WaitForActive(30000)
puts scene.RuntimeSceneInfo.Url
explorerManager.DisconnectAndClose()
Result:
D:\Temp>test.rb
http://www.google.com/search?hl=en&q=c%23&btnG=Google+Search
RubyCLR. Complete Installation Guide:
http://gaech.blogspot.com/2006/10/rubyclr-complete-installation-guide.html
snoops
October 18, 2006, 10:39am
7
You can try SWExplorerAutomation SWEA (http://webunittesting.com ).
Example:
require ‘rubyclr’
RubyClr::reference ‘System’
RubyClr::reference ‘SWExplorerAutomationClient’
include SWExplorerAutomation::Client
include SWExplorerAutomation::Client::Controls
include SWExplorerAutomation::Client::DialogControls
explorerManager = ExplorerManager.new
explorerManager.Connect(-1)
explorerManager.LoadProject(‘google.htp’)
explorerManager.Navigate(‘http://www.google.com/ ’)
scene = explorerManager[‘Scene_0’]
scene.WaitForActive(30000)
scene[“q”].Value = ‘c#’
scene[‘btnG’].Click()
scene = explorerManager[‘Scene_1’]
scene.WaitForActive(30000)
puts scene.RuntimeSceneInfo.Url
explorerManager.DisconnectAndClose()
Result:
D:\Temp>test.rb
http://www.google.com/search?hl=en&q=c%23&btnG=Google+Search
RubyCLR. Complete Installation Guide:
http://gaech.blogspot.com/2006/10/rubyclr-complete-installation-guide.html