Check-out our newly created Free Performance Testing Apache JMeter Testing Course with LoadFocus. In this course we’ll discuss about new ways to run Apache JMeter tests in the cloud with thousands of concurrent users from multiple world locations using LoadFocus JMeter Load Testing tool. It’s so easy to run a JMeter load test with LoadFocus,… Read more »
Posts Categorized: General
What is the Vanishing Gradient Problem?
The Vanishing Gradient Problem appears in Neural Networks when you train a NN using Gradient Descent, the gradients tend to get smaller and smaller as we keep on moving backward in a NN. Basically in a Neural Network, after the forward propagation ends, the gradient is not providing meaningful information back to the first layers… Read more »
bind() function in JavaScript
bind() method creates a new function, when called has its this keyword set to the provided value Let’s have a look at a sample code, on how to use the bind() function: const person = { age: 20, getAge: function() { return this.age; } } const unBoundedGetAge = person.getAge; console.log(unBoundedGetAge()) If we run the code,… Read more »
call() function in JavaScript
call() or Function.prototype.call() method calls a function with a given this value and arguments. Let’s have a look at an example how to use call() method: function Product(name, price) { this.name = name; this.price = price; } function Food(name, price) { Product.call(this, name, price); this.category = ‘food’; } console.log(new Food(‘cheese’, 5).name); Output: cheese apply() or… Read more »
Cypress vs. TestCafe – Pros and Cons
Creating automated tests for your website, web application or mobile application was never an easy task. Have a look how to get started with Cypress in less than 30 minutes. Most of the companies started using Selenium WebDriver for test automation, which was a game changer 5-7 years ago when it first started getting traction,… Read more »
Top 10 Skills you need to be a Good Software Testing Engineer
Been in software testing for more than 10 years now, worked for companies like Adobe, Amazon and other. Here is a list of skills you need to develop/improve in order to become a better software engineer: Understand your product/service Test everything (retest after fixes) Ask a lot of questions (master exploratory testing) Be curious (ask… Read more »
TestCafe in 5 minutes
What is TestCafe Tool? TestCafe is a pure Node.js End to End Solution built for testing web apps. It provides all the functionality you need to start the browser, run the tests, collect the results, and debug potential failures in a very easy way. Is TestCafe free? TestCafe framework is open source, hosted on GitHub… Read more »