- selenuimDriver1
- Posts : 1
Join date : 2012-08-15
IE9 with selenuim 2: Unable to find element issue
Wed Aug 15, 2012 10:07 pm
Hello,
I have a issue that I try to solve almost a week, without success:
I wrote a test program with selenuim 2, which works great on firefox.
But when I try it with IE9, it doesn't find the elements.
for example:
WebElement sh = driver.findElement(By.id("sh"));
sh.click();
works O.K in Firefox, but not in IE9. It gives the next error: Unable to find element with id == sh.
What can be the problem?
I have a issue that I try to solve almost a week, without success:
I wrote a test program with selenuim 2, which works great on firefox.
But when I try it with IE9, it doesn't find the elements.
for example:
WebElement sh = driver.findElement(By.id("sh"));
sh.click();
works O.K in Firefox, but not in IE9. It gives the next error: Unable to find element with id == sh.
What can be the problem?
- popshaAmateur
- Posts : 60
Join date : 2012-04-14
Re: IE9 with selenuim 2: Unable to find element issue
Fri Aug 17, 2012 8:35 am
Hope either one could work.
1. driver.findElement(By,id("sh"));
driver.findElement(By,id("sh")).click();
2. driver.findElement(By,id("sh"));
driver.findElement(By,id("sh")).sendKeys(Keys.ENTER);
And also while working with IEDriver, make sure your browser zoom level is 100%.
1. driver.findElement(By,id("sh"));
driver.findElement(By,id("sh")).click();
2. driver.findElement(By,id("sh"));
driver.findElement(By,id("sh")).sendKeys(Keys.ENTER);
And also while working with IEDriver, make sure your browser zoom level is 100%.
- pcoulson
- Posts : 2
Join date : 2012-09-12
Re: IE9 with selenuim 2: Unable to find element issue
Wed Sep 12, 2012 12:34 am
driver.findElement(By.id("//*[@id='sh']")).click();
Permissions in this forum:
You cannot reply to topics in this forum