Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello I see there is way to handle redirect with ruby, but I was thinking aybe there is the way to do it with watir and then it will be same browser and coockie etc.

So if anyon can give me example how to follow url.

Let's write exapmle:

This is link www. ly.by/ldkfjfjgii in watir I already have destination link and I could say

link = b.frame(:id => 'main_top_right').link(:index => 0).click

so is there a way to catch redirected url (final destination url), where it lands example it could land on http:// somesite. com/jdkdjfk.

I want that final url after redirect with watir, I hope I was clear. tnx

share|improve this question

2 Answers

up vote 0 down vote accepted

After clicking on any link, you can get the current URL of the page by using

browser.url

in case clicking URL opening the link in new window/tab, you can use

browser.windows.last.use do
browser.url
end
share|improve this answer

After clicking the link, the .url method from the Watir::Browser class can obtain the URL.

This is a link to the rdoc: http://rubydoc.info/gems/watir-webdriver/0.6.0/Watir/Browser#url-instance_method

Example:

b.frame(:id => 'main_top_right').link(:index => 0).click  
url_after_click = b.url
share|improve this answer
Please don't just provide "code-only" answers. Explain the "why" not just the "what". – Lee Taylor Nov 19 '12 at 18:41
What if the link opens new window how to follow it. Target - blank – user1405338 Nov 20 '12 at 13:45
Then you'd need to attach to the new browser window. This might get you started: stackoverflow.com/questions/5630084/… – orde Feb 7 at 18:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.