Forum Discussion

SriniG's avatar
SriniG
Contributor
10 years ago
Solved

How to access web page properties and methods available for the objects when multiple browser (IE11) window instances opening in Runtime.

Browser Used: IE11 Modal used: DOM Actually I’m trying to keep the wildcard (*) instead of URL in page function ( Set page=Sys.browser (“iexplore”).page (“*).contentDocument) to get the ...
  • HKosova's avatar
    10 years ago
    Hi Srini,



    Does the URL of the "Rate Plan Detail" page have some unique parts, such as query string parameter names? In this case you can mix them with wildcards to uniquely identify this page.



    For example, if the page URL is:

    http://example.com/rate-plan-detail?planname=KingRate



    you can use

    Sys.browser("iexplore").Page("*rate-plan-detail*")



    or

    Sys.browser("iexplore").Page("*?planname=*")



    or something like that.