
Quick Contact
Python Tutorial
- What is Python?
- How to Install Python?
- Python Variables and Operators
- Python Loops
- Python Functions
- Python Files
- Python Errors and Exceptions
- Python Packages
- Python Classes and Objects
- Python Strings
- PostgreSQL Data Types
- Python Generators and Decorators
- Python Dictionary
- Python Date and Time
- Python List and Tuples
- Python Multithreading and Synchronization
- Python Modules
- What is Python bytecode?
- Python Regular Expressions
Python Panda Tutorial
- Python Pandas Tutorial
- Python Pandas Features
- Advantages and Disadvantages of Python Pandas
- Pandas Library In Python
- Pandas Series To Frame
- Python Dataframeaggregate and Assign
- Pandas Dataframe Describe
- Pandas Dataframe Mean
- Pandas Hist
- Pandas Dataframe Sum
- How to convert Pandas DataFrame to Numpy array
Python Selenium
- Selenium Basics
- Selenium with Python Introduction and Installation
- Navigating links using get method Selenium Python
- Locating Single Elements in Selenium Python
- Locating Multiple elements in Selenium Python
Python Flask Tutorial
Python Django
- How to Install Django and Set Up a Virtual Environment in 6 Steps
- Django MTV Architecture
- Django Models
- Django Views
- Django Templates
- Django Template Language
- Django Project Layout
- Django Admin Interface
- Django Database
- Django URLs and URLConf
- Django Redirects
- Django Cookies and Cookies Handling
- Django Caching
- Types of Caching in Django
- Django Sessions
- Django Forms Handling & Validation
- Django Exceptions & Error-handling
- Django Forms Validation
- Django Redirects
- Django Admin Interface
- Django Bootstrap
- Ajax in Django
- Django Migrations and Database Connectivity
- Django Web Hosting and IDE
- Django Admin Customization
- What is CRUD?
- Django ORM
- Django Request-Response Cycle
- Django ORM
- Making a basic_api with DRF
- Django Logging
- Django Applications
- Difference between Flask vs Django
- Difference between Django vs PHP
Numpy
- Numpy Introduction
- NumPy– Environment Setup
- NumPy - Data Types
- NumPy–Functions
- NumPy Histogram
- numPy.where
- numpy.sort
- NumPyfloor
- Matrix in NumPy
- NumPy Arrays
- NumPy Array Functions
- Matrix Multiplication in NumPy
- NumPy Matrix Transpose
- NumPy Array Append
- NumPy empty array
- NumPy Linear Algebra
- numpy.diff()
- numpy.unique()
- numpy.dot()
- numpy.mean()
- Numpy.argsort()
- numpy.pad()
- NumPyvstack
- NumPy sum
- NumPy Normal Distribution
- NumPylogspace()
- NumPy correlation
- Why we learn and use Numpy?
Tensorflow
- Introduction To Tensorflow
- INTRODUCTION TO DEEP LEARNING
- EXPLAIN NEURAL NETWORK?
- CONVOLUTIONAL AND RECURRENT NEURAL NETWORK
- INTRODUCTION TO TENSORFLOW
- INSTALLATION OF TENSORFLOW
- TENSORBOARD VISUALIZATION
- Linear regression in tensorflow
- Word Embedding
- Difference between CNN And RNN
- Explain Keras
- Program elements in tensorflow
- Recurrent Neural Network
- Tensorflow Object Detection
- EXPLAIN MULTILAYER PERCEPTRON
- GRADIENT DESCENT OPTIMIZATION
Interview Questions & Answers
Navigating links using get method Selenium Python
The Python Module of Selenium is designed to do automated Python checking. Selenium Python bindings are supported by a quick API to write performance testing using Selenium WebDriver. You can navigate all the Selenium WebDriver functionality in an elegant way via the Selenium Python API. This article explains how to use Selenium Python to connect to any web connection using the Selenium Webdriver python tool.
Install them from here if you’ve not installed Selenium and its parts, Selenium Python Release and Installation.
How to navigate links using Python Selenium
From here, instal them from Selenium Python Release and Installation if you haven’t installed Selenium and its modules.
Syntax:
driver.get(url)
Example:
driver.get(“http://www.google.com”)
Until restoring control to your test or script, WebDriver can wait until the page has fully loaded (that is, the onload event has started). It should be remembered that if the page is loaded with a lot of AJAX, then WebDriver will not know when it is fully loaded. If you need to make sure that these pages are fully loaded, you should use Waits.
Project Example:
Build a file named run.py after you have installed Selenium as:
Second Program:
Until restoring control to your test or script, WebDriver can wait until the page has fully loaded (that is, the onload event has started). It should be remembered that if the page is loaded with a lot of AJAX, then WebDriver will not know when it is fully loaded. If you need to make sure that these pages are fully loaded, you should use Waits.
Project Example:
Build a file named run.py after you have installed Selenium as:
Second Program:
from selenium import webdriver
driver = webdriver.Firefox()
driver.get(“https://google.co.in / search?q = facebook”)
Output:

Program:
from selenium import webdriver driver = webdriver.Firefox() # get google.co.in driver.get("https://google.co.in / search?q = google")
Output:

Apply now for Advanced Python Training Course