I want to use Selenium WebDriver to find an element on a page. The page opens, but the field is never found.
testing page:
<applet...>
<param name="password" value="Password" />
</applet>
selenium script:
WebElement query = driver.findElement(By.name("password")); //always timeout
What might be wrong?
