Thanks, but it is not clear to me how this could work in a POST
scenario.
HTTP POST -> Results -> Click Link -> Back (to Results). This relies
on serving a cached results page and not resubmitting a POST.
driver.navigate().to("") is defined as a HTTP GET which shouldn't work
in this case
http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/WebDriver.Navigation.html#to(java.lang.String)
Again this is something that was working with FF 10 and before using
Selenium 2.13.0. Since I am able to manually use FF11 and get the
correct behavior, I suspect there must be some setting in the
Profile's Preferences that can make a difference. Currently my test
app only uses the temporary anonymous profiles, but I suppose as a
test I could export my real profile and try with that. I did,
however, look at the SVN changelogs for the Firefox package and
couldn't pinpoint anything obvious that changed since 2.13.0 that
could explain it. There were some refactorings that perhaps may have
broken things.
On Mar 20, 10:51 am, Vishal <
vishal.mishr...@gmail.com> wrote:
> I to faced the same issue
> The workaround I applied
> Keep the URL of the parent page before leaving
> Parentpageurl = driver.location
> Element.click
> Do your validation if req
>
Diver.navigate.to parentpageurl
> Instead of driver.navigate.back
>
> -via iPhone
> Vishal mishra
>