DADebasmita Adhikariindebasmita-a.hashnode.dev·Aug 22, 2024 · 1 min readLoop Control statements in Python : break, continue, passIn Python, we have 3 loop control statements : break, continue and pass. break When the condition satisfies, the loop breaks and comes out of the loop. for i in range(10): print(i) if i == 5: break # It will print : 0 to 5 and once t...00
DADebasmita Adhikariindebasmita-a.hashnode.dev·Jun 28, 2024 · 2 min readWhy we don't use RemoteWebDriver driver = new ChromeDriver()Introduction: This is more of an Object Oriented Programming interview question rather than a Selenium WebDriver question. First of all, there is absolutely no problem with a browser driver object being referenced by RemoteWebDriver instance variable...00
DADebasmita Adhikariindebasmita-a.hashnode.dev·Jun 5, 2024 · 2 min readHow to Install and Configure Jenkins on WindowsIntroduction: Jenkins is an open source CI/CD automation software. We will learn how to set it up, specifically for a Maven project, to run automation tests built with Java programming language. Step-1 : Download and Run the Jenkins.WAR file Download...00
DADebasmita Adhikariindebasmita-a.hashnode.dev·May 27, 2024 · 3 min readAutomation Testing Framework using Selenium WebDriver and Java : Day 5In the last article of POM Automated Testing framework series, we learnt how to run our tests from command prompt with Maven commands and TestNG .xml with help of Surefire plugin. Remote configurations in test script : In order to run our tests on re...00
DADebasmita Adhikariindebasmita-a.hashnode.dev·May 26, 2024 · 4 min readSetting up Selenium GRID (4.20) with DockerWhat is a Selenium GRID? Selenium GRID is one of the 3 components of Selenium : Selenium WebDriver, GRID and IDE. The architecture consists of a Hub and several nodes. Through our test script, we will connect to the Selenium Hub url and it will run t...00