selenium - Why the debugger is not going to next line after clicking on file download button through IE Web driver c# -
i clicking on file download button in internet explorer. , open/save/cancel prompt coming. this
open , save prompt in ie after clicking download button
code in c# clicking on download file button.
iwebdriver driver = new internetexplorerwebdriver(); driver.findelement(by.id("id_download_file_button")).click(); console.writeline("donload button clicked");
after clicking on button flow not going next line. stucks there. after few seconds throwing wedriver timeout exception.
is there workaround or 1 have idea. why webdriver not going next line.
that "dialog" browser specific , not html dialog. code using html dialog won't work. gets stuck there because have implicitwait()
set , selenium waiting timeout , exception thrown.
Comments
Post a Comment