Jaydeep Karalejaydeepkarale.hashnode.dev·Feb 20, 2023How To Find Elements Using Playwright LocatorsEnd-to-end testing is essential for ensuring the quality and usability of a website or web application. And a crucial aspect of end-to-end testing is the ability to reliably, correctly, and easily locate elements on a web page. The process of locatin...Discussplaywright locators
Taneka Blairneka.hashnode.dev·Dec 11, 2022Traversing the DOM TreeUnderstanding the concept of traversing the Document Object Model is incredibly important when it comes to manipulating elements so you can do whatever you want with them. I had a very rich and frustrating lesson recently in regards to locating and u...DiscussDOM
Macduff Olusatobiolusa.hashnode.dev·Aug 17, 2022How to change logo size in WordPressA logo is the badge of a brand. Like the theme colour, the layout, and font style, the badge forms an integral part of a brand's personality. It is thus essential that a logo reflects the soul of the brand. Beyond the logo's design, another factor to...Discuss·1 like·43 readsWordPress
David Eketedavidekete.hashnode.dev·Apr 17, 2022Commonly used Queries in MongoDBIn this article, we'll look at some of the most commonly used query methods in MongoDB. We'll be using the MongoDB compass and the MongoDB shell to navigate and manipulate a simple database. Prerequisites To comprehend this tutorial, it is expected t...Ifeanyichukwu John and 2 others are discussing this3 people are discussing thisDiscuss·30 likes·295 readsMongoDB
Harish Rajoraharishr.hashnode.dev·Feb 18, 2022How To Inspect Elements On iPhone?Every modern web browser contains a robust set of developer tools for testing element alignment and functionality. It is the fastest way to resolve web issues, especially with JavaScript, responsive web design, and CSS. For example, inspecting the el...Discuss·1 likeiphone
Ria Dayalriadayal.hashnode.dev·Jan 18, 2022FindElement And FindElements In Selenium [Differences]Finding an element in Selenium can be both interesting and complicated at the same time. If you are not using the correct method for locating an element, it could sometimes be a nightmare. For example, if you have a web element with both ID and Text ...Discuss·2 likesTesting
Chris Bongersdaily-dev-tips.hashnode.dev·Dec 4, 2020JavaScript loop querySelectorAll resultsLet's talk about NodeLists, the magical results of a querySelectorAll() query. It's not an array, but it looks and behaves like one. It can be tricky looping over these elements, and there are multiple ways of looping them. How the selector looks lik...Discuss·24 likes·232 readsJavaScript