Vitor Santannavitorsantanna.hashnode.dev·Nov 30, 2023Creating a Telegram Bot to Show information about your mixnodes.Have you ever thought about seeing your node'status without having to open your browser, directly from your cellphone via telegram? This is possible and I will teach you how. Requirements Basic Knowledge of Python Python3.8 or newer BeautifulSoup ...Discussmixnode
BrowserScanbrowserscan.hashnode.dev·Nov 27, 2023How to Bypass Cloudflare DetectionSelenium vs Puppeteer Selenium and Puppeteer are two widely used browser automation tools that play a crucial role in various scenarios such as webpage testing and data crawling. Selenium Selenium is a popular open-source browser automation tool that...DiscussBypass Cloudflare Detection
Debasmita Adhikaridebasmita-a.hashnode.dev·Nov 23, 2023driver.get() vs driver.navigate().to()driver.get() : Method signature : driver.get(String URL_to_launch) . WebDriver interface provides this method to launch a browser: public class LaunchBrowser{ public static void main(String args[]){ WebDriver driver = new ChromeDriver(); ...DiscussSelenium BasicsSelenium navigation
Arun Udayakumararunudayakumar.hashnode.dev·Nov 21, 2023Selenium python Notesfrom selenium import webdriver browser=webdriver.Firefox() browser.get('https://www.ndtv.com/') default_button=browser.find_element_by_id('LATEST') default_button.click()Discussselenium
Debasmita Adhikaridebasmita-a.hashnode.dev·Nov 20, 2023How does Selenium interact with the browser?What is Selenium? Selenium is an open source library which is used to interact with browsers. It provides various APIs to perform actions on a web page elements, e.g. clicking, selection from dropdown, entering texts in textboxes, navigating and a lo...DiscussSelenium Basicsselenium-webdriver
Paulo Oliveirapauloliveira.hashnode.dev·Nov 16, 2023How to Run Headless Browser in Python and SeleniumTraditional browsers with GUIs consume a lot of system resources when at scale. Also, it requires a visible window to render web pages, which can slow down test execution and limit scalability. Headless browsers eliminate the need for a GUI by runnin...DiscussPython
Christopher Thompson098christopher.hashnode.dev·Nov 16, 2023Using WebDriverWait in Selenium — All you need to knowAs a developer, you might have witnessed ‘Wait’ commands while writing the first Selenium program. These are essential pieces of code that are required to execute a test case properly. This article talks in depth about the Wait commands, their signif...Discussselenium-webdriver
J. V. G. Ransikajvgransika.hashnode.dev·Nov 13, 2023A Comprehensive Guide to Text Extraction in Selenium with PythonToday we are going to look at one of the common tasks in web automation, extracting text from web elements. In this article, we will explore three different methods for text extraction in Selenium using Python. To demonstrate the text extraction meth...DiscussPython
Manoj Kumarirhythm.hashnode.dev·Nov 8, 2023Automated Testing Result🚀 Project Name: Automated Testing Result 📃 Project Description: This project automates the testing process and sends testing result logs and screenshots to AWS S3 while also recording result logs in CloudWatch Logs. Furthermore, the logs and screen...DiscussAWS
Leo Boothleobooth.hashnode.dev·Nov 8, 20237 Ways to Fix Flaky Tests1: Prefer explicit waits Waits are one of the most common reasons for flaky tests. An automated test typically consists of a series of steps that must be executed in order one after the other. The app the test is attempting to control, however, often...Discuss·50 readsSoftware Testing