Showing posts with label Broken Link checker. Show all posts
Showing posts with label Broken Link checker. Show all posts

November 23, 2019

How to Enable multi-threading in selenium java for faster execution

How to Enable multi-threading in selenium java for faster execution

What happens if we have one test and when we start the test then we need to do a specific set of steps in parallel. This absolutely looks ...

November 12, 2019

How to Disable SSL verification while using HttpsURLConnection - C#

How to Disable SSL verification while using HttpsURLConnection - C#

If your website is not SSL secured, you can use below coded before sending a HTTP request to URL to bypass connection issue 1 2 3 ...
How to check all the broken links in a web page using Selenium C# (.Net)

How to check all the broken links in a web page using Selenium C# (.Net)

To check if all the links inside a web page is working fine or not, at first we need to get all the links in inside the web page. To do...
How to check all broken links in a web page using Selenium Java

How to check all broken links in a web page using Selenium Java

To check if all the links inside a web page are working fine or not, at first we need to get all the links inside the web page. To do t...

November 10, 2019

Disable SSL verification while using HttpsURLConnection - Java

Disable SSL verification while using HttpsURLConnection - Java

If your website is not SSL secured, you can use below coded before sending a HTTP request to URL to bypass connection issue 1 2 3 ...
Bookmark this website for more workarounds and issue fixes.

Verify Zip file contents without extracting using C# + Selenium

While doing automation testing, we may get a scenario where we need to download a zip file and to validate the contents inside it. One way t...