9ac. WebDriver – Unable to locate an element easily? Read on…
15. Form input bindings
Welcome to a binding discussion! Now that we know all about this superstar, v-model, which is used to achieve two-way data binding on form elements, let’s visually understand how Vue works magically under the hood by picking the correct way to…
10l. Advanced WebDriver – Using Log4j Part 2
This is a continuation of the article, ‘Using Log4j Part 1’ and hence, I suggest that you read part 1 before proceeding any further to get a grip on what’s happening. Scenario Configure Log4j.properties file, Log level – DEBUG Loggers –…
10k. Advanced WebDriver – Using Log4j Part 1
Let me take a stab at explaining logging for Selenium with Apache Log4j today! So, without further ado, let’s dive in!! Why do we need logging in the first place? As an automation tester, we deal with troubleshooting, debugging and…
18. Class bindings
Welcome to yet another binding discussion. Today, I will be schooling you on class bindings. In other words, we will be playing around with HTML element’s class attribute by binding data to it using Vue. Why? Because we might be…
9ab. WebDriver – Using Actions Class
Lights, camera, action! Yes, today its all about Actions. Oh, I am not talking about those fight sequences you watch in movies but about the keyboard and mouse actions. 😛 Selenium WebDriver provides a user-facing API for performing complex user…
14. Two-way data binding with v-model
Finally, the day has come, to understand the missing piece of the puzzle, data binding. So far, we have seen how to use interpolations, v-bind for attribute binding and v-on to listen to events. The missing piece was v-model which…
9r. WebDriver – Assert and Verify
Hiya superstars! We have been locating elements for quite some days now. Let us switch gears and talk about “Assert and Verify” today. To remember, The major difference between the two when the assert or verify condition/check fails is, Assert will…
12. Listening to keyboard and mouse events
Ready to listen for some key codes on your keyboard and some mouse buttons using Vue? Let’s dig deep then! Make sure you read up on “Listening to DOM events and Event modifiers” if you haven’t already. Because this is…