Selenium Assignments by Raghuveer
Selenium Assignments by Raghuveer
Number
Assignment 1 Maven Project Creation 1. Create a Maven Project inside Eclipse https://mvnrepository.com/
2. Open maven repository website in any browser
3. Include "selenium java" and "TestNG" dependencies inside pom.xml
4. Notice/Observe the "Maven Dependencies" folder got created and jar files
are available as per the version.
Assignment 2 Push existing project to GitHub How to add existing project into GIT . https://github.com/signup?source=login
1. Create a repository in GIT with the name of your local project.
practise with git bash and eclipse 2. Open GIT bash and navigate to the folder where your local repository is saved
3. Navigate inside your repository name
4. git init (To initialize the git repository)
5. git add . (to add all the files to the index)
6. git add "file name" (to add each file individually)
7. git commit -m "commit message"
8. git branch -M main
9. git remote add origin "URL of the GIT repository" .
10. git push -u origin main
after this it will prompt to enter user name and password