Selenium remote webdriver timeouts after 60 secs, c# vs2015
I am facing an issue with selenium web driver c#. I am running a test via chrome on my local machine and launching chrome driver with driver = new Chrome Driver()
. For one of the pages, the page takes more than 60 secs to load and fetch all elements and I am shown every time this message.
Any thoughts? Also I am using visual studio 2015 with Nunit.
c# selenium webdriver remotewebdriver
add a comment |
I am facing an issue with selenium web driver c#. I am running a test via chrome on my local machine and launching chrome driver with driver = new Chrome Driver()
. For one of the pages, the page takes more than 60 secs to load and fetch all elements and I am shown every time this message.
Any thoughts? Also I am using visual studio 2015 with Nunit.
c# selenium webdriver remotewebdriver
add a comment |
I am facing an issue with selenium web driver c#. I am running a test via chrome on my local machine and launching chrome driver with driver = new Chrome Driver()
. For one of the pages, the page takes more than 60 secs to load and fetch all elements and I am shown every time this message.
Any thoughts? Also I am using visual studio 2015 with Nunit.
c# selenium webdriver remotewebdriver
I am facing an issue with selenium web driver c#. I am running a test via chrome on my local machine and launching chrome driver with driver = new Chrome Driver()
. For one of the pages, the page takes more than 60 secs to load and fetch all elements and I am shown every time this message.
Any thoughts? Also I am using visual studio 2015 with Nunit.
c# selenium webdriver remotewebdriver
c# selenium webdriver remotewebdriver
edited Nov 12 '18 at 15:24
Tim Diekmann
3,02491736
3,02491736
asked Nov 12 '18 at 14:30
Ali_ShahperAli_Shahper
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There is an overload to specify a command timeout (which defaults to 60), but you'll have to also pass in a ChromeOptions
:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_3.htm
For example:
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264298%2fselenium-remote-webdriver-timeouts-after-60-secs-c-sharp-vs2015%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is an overload to specify a command timeout (which defaults to 60), but you'll have to also pass in a ChromeOptions
:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_3.htm
For example:
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
add a comment |
There is an overload to specify a command timeout (which defaults to 60), but you'll have to also pass in a ChromeOptions
:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_3.htm
For example:
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
add a comment |
There is an overload to specify a command timeout (which defaults to 60), but you'll have to also pass in a ChromeOptions
:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_3.htm
For example:
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
There is an overload to specify a command timeout (which defaults to 60), but you'll have to also pass in a ChromeOptions
:
https://seleniumhq.github.io/selenium/docs/api/dotnet/html/M_OpenQA_Selenium_Chrome_ChromeDriver__ctor_3.htm
For example:
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
edited Nov 14 '18 at 13:26
answered Nov 12 '18 at 20:47
Lucas TierneyLucas Tierney
1,64288
1,64288
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
add a comment |
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
Thanks for your reply. However, I am not using chrome driver .exe for launching chrome driver as I had to then update chromedriver .exe later. Is there any other way to solve this timeout issue while I'm instantiating chrome browser via 'new ChromeDriver()'.
– Ali_Shahper
Nov 14 '18 at 5:59
I've updated the link to use a different overload instead of string path.
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
I've updated the link to use a different overload instead of string path.
IWebDriver driver = new ChromeDriver(ChromeDriverService.CreateDefaultService(), new ChromeOptions(), TimeSpan.FromSeconds(120));
– Lucas Tierney
Nov 14 '18 at 13:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
thanks a lot Lucas for your reply. It worked for me.
– Ali_Shahper
Nov 16 '18 at 6:26
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264298%2fselenium-remote-webdriver-timeouts-after-60-secs-c-sharp-vs2015%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown