Hi
I have a problem while testing a link :
The web pages generated by my application have the following structure :
- An html document including 2 frames. This top document imports a
javascript file (in which is declared a function 'foo')
- In one of the included frames, the 'foo' function is called by another
javacript function : " function fooCaller() {top.foo;} "
- The function 'fooCaller' is called while clicking a link in the frame.
I would like to test this link with WebTest. But:
- I don't know how to access a nested frame while staying in the top
document;
- When I go into the frame ("followFrame" task), the javascript file
imported in the top document seems to be inaccessible.
Did I miss something?
Thank you
Geraud