Folks,
I am having an interesting problem. I have some javascript on the webpage which opens a popup window when clicked. I am trying to find the title of the window so that I can click on that, the window has the following two buttons "Cancel" and "Save File". Here is what I am doing in my ruby code:
@windows = @browser.windows #this should return an array, so @windows is an array
p @windows[1] #output of this is #<Watir::Window:0x115c796cc located=true>
puts "This is the title of the second window---->"+@windows[1].title #this puts blank
The problem that I am seeing is why does my windows object does not have any variables when I print it out using p @windows[1] also why is the title not printed when I do @windows[1].title. My goal is click on the "Download the file" button of the popup window
This is the piece of HTML that I have:
<td>
<a onclick="window.open(this.href);return false;" href="/search/searches/1563/exports/1017">6175-1017-20120418181521-karnire.eml.zip</a>
</td>
The other thing that I tried is doing something like this in my code:
@windows = @browser.windows
@browser.window(:title => @windows[1].title).use do
@browser.button(:value => "Save File").click
end
for the above I get an error like this:
Unable to locate window "{639686d9-4641-aa41-bf6f-3ba89659d921}" (Selenium::WebDriver::Error::NoSuchWindowError)
<td> <a onclick="window.open(this.href);return false;" href="/report/reports/1563/reports/1017">6333-33317-20134745748181521-dfrgrgr.fml.zip</a> </td>– user1047912 Apr 18 '12 at 18:19