Posts

Showing posts from February, 2025

Real Interview Questions and marks

1. Automation Expertise Question: Describe a challenging automation project you worked on. What was your approach? The most challenging automation project was when I got a chance to work on robot framework for one of customer POCs, I created few automation test suites with nearly 100 test cases and executed using robot framework. We had also implemented STC collaboration with it using Python APIs. It was first experience for me when I had done research on robot framework working and driven the entire process and trained team with this new framework. Great Experience though !! 2. Knowledge of Frameworks Question: How would you set up a test suite using Robot Framework? Test suite can be setup using libraries, keywords, variables and multiple tests. 3. Python Programming Skills Question: Write a Python program to reverse a string. a="Suchitra" print(a[::-1]) 4. Problem-Solving Skills Question: How would you automate a repetitive task that involves data extraction and reporting?...

GIT - Global Information Tracker - Fun Learning !!

  1.  What is Git? Think of Git as a  time machine  for your code. It allows you to travel back to previous versions, create alternate timelines (branches), and merge them back together. 2.  Repositories A repository (repo) is like a  project folder . It contains all your project files and the entire history of changes. git init : Initializes a new Git repository. git clone <repository-url> : Clones an existing repository. 3.  Commits A commit is like taking a  snapshot  of your project at a specific point in time. Each commit has a unique ID and a message describing the changes. git add <file> : Stages changes for the next commit. git commit -m "message" : Commits the staged changes with a message. 4.  Branches Branches are like  parallel universes . You can create a branch to work on a new feature without affecting the main project. git branch <branch-name> : Creates a new branch. git checkout <branch-name>...