All about coding channel.πŸ’»πŸ–₯
230 subscribers
74 photos
8 videos
264 files
214 links
Download Telegram
Job Title: Python Squish Automation Engineer
Location: Bangalore
Experience: 5–7 Years
Open Positions: 3
Employment Type: Full-time
Work Mode: Work from Office (5 Days) – No WFH
Important Note
β€’ Only Immediate Joiners will be considered
About the Role
We are looking for experienced Python Squish Automation Engineers with a strong
background in test automation and medical domain experience. The role involves developing
and maintaining automated test scripts for regulated products.
Key Responsibilities
β€’ Develop and maintain test automation scripts using Python and Squish
β€’ Design, execute, and manage automated test cases
β€’ Work on software verification and validation for medical/regulated products
β€’ Analyze application behavior using diagnostic tools
β€’ Collaborate with cross-functional teams for test planning and execution
β€’ Ensure adherence to software testing methodologies and processes
β€’ Support design control activities for regulated environments
β€’ Identify defects and track them to closure
Mandatory Skills
β€’ Strong experience in Python scripting and Squish automation tool
β€’ Hands-on experience in test automation frameworks
β€’ Good understanding of software testing life cycle (STLC)
β€’ Experience in medical domain / regulated environment
β€’ Strong logical and analytical skills
Preferred Skills
β€’ Experience in software verification & validation
β€’ Knowledge of regulatory standards (medical domain preferred)
β€’ Familiarity with application diagnostics and debugging tools
Qualification
β€’ B.E / B.Tech (Mandatory)
Compensation
β€’ CTC: β‚Ή10 – β‚Ή12 LPA (Maximum)
Candidate Profile
β€’ 5–7 years of relevant experience
β€’ Self-motivated and able to work independently or in a team
β€’ Strong problem-solving mindset
β€’ Willing to work from office (5 days a week)

Ideal Candidate Should Have
β€’ Prior experience in automation testing using Python + Squish
β€’ Exposure to medical devices / healthcare software testing
β€’ Ability to deliver in a fast-paced environment

Interested candidates can share your updated resume to shwetha@scgcareer.in // 7892263575
Walk-in || Backend Developer , Java & Spring Boot & SQL
Paysquare Consultancy

3 - 4 years
Not Disclosed
Pune
Time and Venue
4th May - 8th May , 11.00 AM - 3.00 PM
Paysquare Consultancy Ltd, 4th Floor, 1537, Bhakti Pemium, Old Mumbai-Pune road | Dapodi, Pune- 411012
Contact - Apurva Badwe ( 8484863013 )
Send me jobs like this
Posted: 1 day ago
Openings: 1
3-4 years experience in Java, Spring Boot, Spring MVC, JPA/Hibernate, and SQL databases with a Bachelor's in Computer Science
Develop and maintain backend applications, design and consume RESTful APIs, work with MySQL databases, collaborate with cross-functional teams, write clean and scalable code
▢️ Angular essentials :
All about coding channel.πŸ’»πŸ–₯
▢️ Angular essentials :
▢️ To add any new feature/package to your angular project, go to this link and type what new feature/package you want to add to your angular project like bootstrap, go to :

https://www.npmjs.com/
All about coding channel.πŸ’»πŸ–₯
▢️ To add any new feature/package to your angular project, go to this link and type what new feature/package you want to add to your angular project like bootstrap, go to : https://www.npmjs.com/
▢️To install bootstrap package to your angular project, follow these steps :

1. To add bootstrap to your angular project, go to the link above(https://www.npmjs.com/) and there type bootstrap in search package, thereafter u will get all the details including command to install that new feature/package to your angular project,steps are :
2. Add these lines of code to your angular.json file in styles section of angular.json file :
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
]

3. After that make sure to restart the application in order to make sure that these packages are installed in your angular project.

Command to restart your project:

ng serve
All about coding channel.πŸ’»πŸ–₯
▢️ Command to download angular if u already installed node js : npm install -g @angular/cli
▢️ How to check whether node is already installed in your pc,command :

npm -v

▢️ How to check whether angular is installed properly or not,command :

ng v
All about coding channel.πŸ’»πŸ–₯
▢️ How to create new angular project,command : ng new <projectName>
▢️ How to create a new component in angular,command :

ng generate component <componentName>

or

ng g c <componentName>
All about coding channel.πŸ’»πŸ–₯
▢️ Everything written inside @Component is called Decorator.
1. One Way Data Binding :

a) {{variable name -One way data binding}} - Interpolation

<div class="col-6">
1. Interpolation
<p>First Name => {{firstName}}</p>
<div>{{rollNo}}</div>
</div>

b) [
Property of element] = "firstName/variable name"-One way data binding - Property Binding

<div class="col-6">
2. Property Binding
<div>
<input type="text" [value]="firstName" name="" id="" >
<br>
<input type="text" [placeholder]="myPlaceHolder" name="" id="">
<br>
<div [class]="div1ClassName" style="height: 100px; width: 100px;"> </div>
</div>
</div>

c) (click)= "showWelcomeMessage()/Any method name"- One way data binding - Event Binding


<div class="col-3">
<button class="btn btn-success" (click)="showWelcomeMessage()">Show Welcome Text</button>
</div>
All about coding channel.πŸ’»πŸ–₯
React Essentials:
To create a new React application , we need to have node.js installed our pc.

▢️ Creating a new React Application :-

> npx create-react-app my-app


create-react-app is the actual command to actually create the project.
or(Modern Approach)
npm create vite@latest my-react-app-learning-react

Followed by checking following check boxes as follows :

β—‡ Select a framework:
β”‚ React
β”‚
β—‡ Select a variant:
β”‚ TypeScript
β”‚
β—‡ Which linter to use?
β”‚ ESLint
β”‚
β—‡ Install with npm and start now?
β”‚ Yes
All about coding channel.πŸ’»πŸ–₯
▢️ How to compile the code :- tsc sample-types.ts ▢️ How to run the code :- node sample-types.js
Note : By default , tsc will Still generate a .js File , so to prevent this we have to use a compiler flag as follows :-

tsc -noEmitOnError FileName.ts


PS C:\Users\subham.krishna\Desktop\typescript training\02-variables> tsc -noEmitOnError sample-types.ts
All about coding channel.πŸ’»πŸ–₯
Note : By default , tsc will Still generate a .js File , so to prevent this we have to use a compiler flag as follows :- tsc -noEmitOnError FileName.ts PS C:\Users\subham.krishna\Desktop\typescript training\02-variables> tsc -noEmitOnError sample-types.ts
▢️ TypeScript Loops and Arrays :-

File : Loops.ts
for(let i =0 ; i<5;i++){
console.log(i);
β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”

let reviews: number[] = [5,5,4,5,1,3];

Looping through an array :-
for(let i =0; i<reviews.length;i++) {
console.log(reviews[i];
}

β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”β€”--
File : reviews.ts :-

let reviews: number[] = [5,5,4.5,1,3];

let total : number =0;

for(let i=0;i<reviews.length;i++) {
console.log(reviews[i];
total +=reviews[i];