awsdocs /
aws-doc-sdk-examples
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
Loading repository data…
Jayavikram07 / repository
This repository contains Selenium automation scripts written in Java using Eclipse IDE. The project demonstrates different locator strategies (Name, CSS Selectors, etc.) and includes sample Java OOP code for calculations.
This repository contains Selenium automation scripts written in Java using Eclipse IDE. The project demonstrates different locator strategies (Name, CSS Selectors, etc.) and includes sample Java OOP code for calculations.
/src
└── /main
└── /java
└── learning_Locators
├── register_Demo.java
├── CssSelector_Locator.java
└── Trapezoid.java
└── /main/resources
└── chromedriver.exe
Automates registration on Demo Web Shop using Selenium locators (By.name).
Features:
driver.findElement(By.name("FirstName")).sendKeys("Jayavikram");
driver.findElement(By.name("LastName")).sendKeys("M V");
driver.findElement(By.name("Email")).sendKeys("jayavikrammv@gmail.com");
driver.findElement(By.name("Password")).sendKeys("jv2@1234");
driver.findElement(By.name("ConfirmPassword")).sendKeys("jv2@1234");
Demonstrates automation using CSS/Name locators on Instagram login page.
Features:
driver.findElement(By.name("username")).sendKeys("Keerthanamv@gmail.com");
driver.findElement(By.name("password")).sendKeys("M V");
Example program showing:
public double calculateArea(){
return 0.5 * (b1 + b2) * h;
}
public double calculatePerimeter(){
return b1 + b2 + s1 + s2;
}
/src/main/resources/chromedriver.exe
Open Eclipse
Import the project
Add Selenium JARs to Build Path
Run any test file:
register_Demo.javaCssSelector_Locator.javaTrapezoid.javajavac register_Demo.java
java register_Demo
Add screenshots of test execution or folder structure here.
Example:
/screenshots
├── register_test.png
└── instagram_test.png
Feel free to fork the repo and submit pull requests. Suggestions to improve test automation structure (Page Object Model, TestNG, Maven) are welcome.
This project is open-source and available under the MIT License.
Selected from shared topics, language and repository description—not editorial ratings.
awsdocs /
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
Vishal-raj-1 /
This Repository contain awesome vanilla JavaScript projects.
smv1999 /
This repository contains all the popular Competitive Programming and DSA questions with solutions for your Coding Interview Preparation.
thepranaygupta /
A repository that contains all the Data Structures and Algorithms concepts and their implementation in several ways, programming questions and Interview questions. The main aim of this repository is to help students who are learning Data Structures and Algorithms or preparing for an interview.
sukritishah15 /
This repository contains codes for various data structures and algorithms in C, C++, Java, Python, C#, Go, JavaScript, PHP, Kotlin and Scala
james34602 /
Audio DSP effects build on Android system framework layer. This is a repository contains a pack of high quality DSP algorithms specialized for audio processing.