rshf / chromedriver

Automatically exported from code.google.com/p/chromedriver
2 stars 1 forks source link

chromedriver_win_26.0.1383.0 crashes when invoking actions.sendKeys(webElement, text).build().perform(). #210

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Selenium version:2.31
OS: Windows 7 64
Browser: Chrome
Standalone driver version: Version 25.0.1364.160 m
Browser version: Version 25.0.1364.160 m

I'm running something like this:

String driver_name = "/chromedriver_win.exe";
System.setProperty("webdriver.chrome.driver", 
getClass().getResource(driver_name).getPath());

DesiredCapabilities capabilities = DesiredCapabilities.chrome();

RemoteWebDriver driver = new ChromeDriver(capabilities);
WebElement webElement = driver.findElement(By.cssSelector("input#some_id"));

Actions actions = new Actions(driver);
actions.sendKeys(webElement, text).build().perform();

During keys sending I usually get an alert that chrome driver stops working.

Original issue reported on code.google.com by blees...@gmail.com on 13 Mar 2013 at 1:30

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by kkania@chromium.org on 13 Mar 2013 at 11:55

GoogleCodeExporter commented 9 years ago

Original comment by kkania@chromium.org on 14 Mar 2013 at 9:20

GoogleCodeExporter commented 9 years ago

Original comment by kkania@chromium.org on 14 Mar 2013 at 9:21

GoogleCodeExporter commented 9 years ago
Is there any update  on finding a resolution for this issue please.
Chrome driver crashes and comes with a windows dialog "Wait for the process to 
complete or kill the process"

Selenium version:2.31
OS: Windows 7 64
Browser: Chrome
Standalone driver version: Version 25.0.1364.160 m
Browser version: Version 25.0.1364.160 m/ 26.0.1410.64 m

Original comment by s.mutali...@googlemail.com on 8 May 2013 at 11:21

GoogleCodeExporter commented 9 years ago

Original comment by samu...@chromium.org on 21 Feb 2015 at 12:18

GoogleCodeExporter commented 9 years ago
Unable to reproduce this issue with latest version of ChromeDriver(2.15), 
selenium (2.45) and latest chrome(41.xx.xx). please update to latest version 
retest and let us know if this issue is still existing.

--------------java------------
    String driver_name = "C://path//to//chromedriver.exe";
    System.setProperty("webdriver.chrome.driver", driver_name);

    DesiredCapabilities capabilities = DesiredCapabilities.chrome();

    RemoteWebDriver driver = new ChromeDriver(capabilities);
    driver.get("https://www.mileageplusshopping.com/");
    WebElement webElement = driver.findElement(By.cssSelector(".mn_searchInput"));

    Actions actions = new Actions(driver);
    actions.sendKeys(webElement, "testing").build().perform();

Original comment by agau...@chromium.org on 13 Apr 2015 at 9:57