How to know a URL is existing using Selenium WebDriver using C#?
In my application I store a list of URLs and only products that have an existing URL (ie not any 404 or Page not found or broken URL).
I want to view in my pages, then to navigate to that page. Now I need to get code that checks if the given URL is existing using WebDriver in selenium and C#.
c# selenium selenium-webdriver
add a comment |
In my application I store a list of URLs and only products that have an existing URL (ie not any 404 or Page not found or broken URL).
I want to view in my pages, then to navigate to that page. Now I need to get code that checks if the given URL is existing using WebDriver in selenium and C#.
c# selenium selenium-webdriver
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55
add a comment |
In my application I store a list of URLs and only products that have an existing URL (ie not any 404 or Page not found or broken URL).
I want to view in my pages, then to navigate to that page. Now I need to get code that checks if the given URL is existing using WebDriver in selenium and C#.
c# selenium selenium-webdriver
In my application I store a list of URLs and only products that have an existing URL (ie not any 404 or Page not found or broken URL).
I want to view in my pages, then to navigate to that page. Now I need to get code that checks if the given URL is existing using WebDriver in selenium and C#.
c# selenium selenium-webdriver
c# selenium selenium-webdriver
edited Dec 13 '18 at 5:19
Deepak Krishna R
asked Nov 19 '18 at 10:12
Deepak Krishna RDeepak Krishna R
116
116
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55
add a comment |
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55
add a comment |
1 Answer
1
active
oldest
votes
string urlFraction = "/myfolder/some.html";
double seconds = 10;
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(seconds));
bool wellTheAddressBarChanged = wait.Until(ExpectedConditions.UrlContains(urlFraction));
// TODO: Give IE11 special treatment here.
bool thePageActuallyLoaded = wait.Until(d => ((IJavaScriptExecutor)d).ExecuteScript("return document.readyState").Equals("complete"));
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%2f53372389%2fhow-to-know-a-url-is-existing-using-selenium-webdriver-using-c%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
string urlFraction = "/myfolder/some.html";
double seconds = 10;
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(seconds));
bool wellTheAddressBarChanged = wait.Until(ExpectedConditions.UrlContains(urlFraction));
// TODO: Give IE11 special treatment here.
bool thePageActuallyLoaded = wait.Until(d => ((IJavaScriptExecutor)d).ExecuteScript("return document.readyState").Equals("complete"));
add a comment |
string urlFraction = "/myfolder/some.html";
double seconds = 10;
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(seconds));
bool wellTheAddressBarChanged = wait.Until(ExpectedConditions.UrlContains(urlFraction));
// TODO: Give IE11 special treatment here.
bool thePageActuallyLoaded = wait.Until(d => ((IJavaScriptExecutor)d).ExecuteScript("return document.readyState").Equals("complete"));
add a comment |
string urlFraction = "/myfolder/some.html";
double seconds = 10;
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(seconds));
bool wellTheAddressBarChanged = wait.Until(ExpectedConditions.UrlContains(urlFraction));
// TODO: Give IE11 special treatment here.
bool thePageActuallyLoaded = wait.Until(d => ((IJavaScriptExecutor)d).ExecuteScript("return document.readyState").Equals("complete"));
string urlFraction = "/myfolder/some.html";
double seconds = 10;
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(seconds));
bool wellTheAddressBarChanged = wait.Until(ExpectedConditions.UrlContains(urlFraction));
// TODO: Give IE11 special treatment here.
bool thePageActuallyLoaded = wait.Until(d => ((IJavaScriptExecutor)d).ExecuteScript("return document.readyState").Equals("complete"));
answered Nov 21 '18 at 13:47
MicManMicMan
165
165
add a comment |
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%2f53372389%2fhow-to-know-a-url-is-existing-using-selenium-webdriver-using-c%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
Why not use WebClient.DownloadString(url) to do this? There is no need to involve selenium which is unefficeint.
– qaqz111
Nov 19 '18 at 15:55
how can I use it? How I know a page is exist or not? using this code.
– Deepak Krishna R
Nov 20 '18 at 5:18
If the page you are requesting does not exist (404), the method will throw a WebException, see MSDN here: docs.microsoft.com/en-us/dotnet/api/…
– qaqz111
Nov 20 '18 at 16:50
try{ new WebClient().DownloadString(url); } catch (WebException ex) { ... }
– qaqz111
Nov 20 '18 at 16:53
In fact the WebException is thrown by WebRequest object which is underlying inside WebClient class, so you can use WebRequest class directly too. You can google for how to use this class.
– qaqz111
Nov 20 '18 at 16:55