Example: web.image_check

In the following example, the image_check function looks for the image ALT text is "Venus" in the ImagesAndMaps page:

try 
{ 
    web.url("index.html", 
        "URL=http://localhost/ImagesAndMaps.html",
        new String [] {
            "TargetFrame=", "LAST"});
    web.image_check("Go2Venus", 
        new String []{"Alt=Venus", web.LAST});
}
catch (Exception e) {}