Skip to content
  • Contact me
  • About me
  • Demo
  • DemoForm
  • TechStuff
Top Menu
Facebook page opens in new windowFacebook page opens in new windowTwitter page opens in new windowYouTube page opens in new window
qavalidation
QA tools and automation testing techniques
qavalidationqavalidation
  • HOME
  • Selenium
    • Selenium-Java
    • Selenium-Python
    • Demo2
  • Appium
    • Appium tutorial
  • WebdriverIO
  • JavaForQA
    • Java interview questions for QA
    • ExcelRW
    • TestNG
  • More
    • Cypress
    • TestingBasics
    • MavenBuild
  • Training
Search:
  • HOME
  • Selenium
    • Selenium-Java
    • Selenium-Python
    • Demo2
  • Appium
    • Appium tutorial
  • WebdriverIO
  • JavaForQA
    • Java interview questions for QA
    • ExcelRW
    • TestNG
  • More
    • Cypress
    • TestingBasics
    • MavenBuild
  • Training

Monthly Archives: February 2018

You are here:
  1. Home
  2. 2018
  3. February

Python – print fibonacci series

PythonBy sunil patroFebruary 27, 2018Leave a comment

In this post, we will see how we can print fibonacci series of numbers in python Logic First two numbers are 0 and 1, and then next subsequent integer will be sum of the previous 2 numbers Implementation We will see 2 ways of implementation, using Recursive method for loop Method1 def fibo(i): if i…

Python – Check if a number is prime

PythonBy sunil patroFebruary 26, 2018Leave a comment

In this post, we will see how we can check if a number is prime or not Logic A number is prime, if it has NO divisors other than 1 or itself [in other words, it should not be divisible by any number in between 1 and itself] e.g 5 => is a prime number [5…

Python – Factorial of a number

PythonBy sunil patroFebruary 26, 2018Leave a comment

In this post, we will see how we can find factorial of a given number using python Logic Factorial of number 5 is => 5*4*3*2*1 = 120 Implementation In this below code block, we will get to know use of if else statement for loop print method num = 5 factorial = 1 if num…

Handle dropdown in selenium using python

Python, SeleniumTestingBy sunil patroFebruary 22, 2018Leave a comment

In this post, we will see how to handle drop down webelement in Selenium and python, select an option from the drop down & also fetch all the options. Prerequisite Download and setup python Configure & run python on PyCharm [my preference] Know how to write Selenium test using Python How to select an item A…

Sublime text 3.x – Download setup customize to run python

Python, SeleniumTestingBy sunil patroFebruary 8, 2018Leave a comment

Sublime text 3.x is one of the light weight multi platform python editor,one good thing about this editor is that you can even keep a portable version for windows OS. In this post, we are going to discuss python setup on windows OS Prerequisite You should have python installed on your machine, if not follow…

How to configure & run python on PyCharm

PythonBy sunil patroFebruary 2, 20184 Comments

In our prev post, we have seen how to setup python on windows machine. There are several editors available including command prompt to run python, in which Pycharm is one of the popular editor. Jetbrains provides Pycharm editor [community edition] free of cost. Download & install Navigate to pycharm for windows link Click on download…

All rights reserved | qavalidation
  • Contact me
  • About me
  • Demo
  • DemoForm
  • TechStuff
Top Menu
Go to Top