You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframework-users
Hi,
I wonder if some of you have similar problem? During test execution
new browser tab is open and I have to check if user were properly
redirected by finding some element on newly opened page. So far tied
with :
Select window but it failed.
Thanks in Advance for any suggestions
Kevin O.
unread,
Aug 27, 2012, 12:03:55 PM8/27/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframe...@googlegroups.com
Please put the failure text in your posts so we can help you better. Are you using Internet Explorer? Can you execute Get Window * keywords?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframe...@googlegroups.com, lukas...@gmail.com
Hi,
I have a similar issue and I hope my explanation will be more detailed.
So I have a test case where clicking an element opens another window. I just want to confirm if the new window has the element that it should have (eg. Facebook page should have the element for the Facebook cover profile), close that new window, return to the original window then open a new one again.
Here's the script I wrote. Am also placing the Suite Setup and Suite Teardown
Suite Setup Open Homepage ${URL} ${BROWSER} ${TITLE}
Suite Teardown Close all Browsers
Get Window Titles
Click Elementid=soc-fb
Get Window Titles
Select Windowtitle= Our Page | Facebook
Page Should Contain Elementid=fbProfileCover
Close Window
Select Window title=Our Page
Click Element id=soc-pin
And it causes a stack trace issue. I understand that this is because I closed a window, but I thought it would be okay as long as one window is open, which there is.
Here is the stack trace:
Documentation:
Takes a screenshot of the current page and embeds it into the log.
Thing is that there are other tests that will run after this test case is over and I want to get rid of the other windows before that. Is there a way for me to close a specific window, without causing the exception?