Selenium with Python Tutorial 38-Python UnitTest |Creating and Running Test Suites | Batch Testing

preview_player
Показать описание
Topic :
----------
1. Python UnitTest
2. Creating and Running Test Suites
3. Batch Testing

#########################
Udemy Courses:
#########################

Manual Testing+Agile with Jira Tool
************************************

Selenium with Java+Cucumber
********************************

Selenium with Python & PyTest
********************************

Selenium with python using Robot framework
****************************************

API Testing(Postman, RestAssured & SoapUI)
*****************************************

Web & API Automation using Cypress with Javascript
********************************************

Playwright with Javascript
**************************

Jmeter-Performance Testing
************************

SDET Essencials(Full Stack QA)
*************************

Appium-Mobile Automation Testing
************************************

Java Collections
*****************

Python Programming
*********************

Cucumber BDD Framework
***************************

Protractor with Javascript
***************************

####################################
Youtube Playlists:
####################################

Manual Testing & Agile
***********************

SQL
****

linux & Shell Scripting
**********************

Java
*****

Selenium With Java+Cucumber
********************************

Python
***************************

Selenium With Python,Pytest&Behave
***************************************

Selenium With Python Using Robert Framework
(Web&API Testing)
*************************************************

API Testing (Postman,SoapUi,&Rest Assured)
**********************************************

Mobile App Testing Appium
****************************

Performance Testing Jmeter
*******************************

Maven,Jenkins,Git,Github,CI/CD
*******************************

SQL,DB Testing&ETL,Bigdata
*******************************

JavaScript Based Automation Tools
********************************

Selector Hub Tools
********************

GraphQL
******************

Cypress API Testing
********************

Cypress Web Testing
**********************

Playwright with Javascipt
**************************

#Selenium
#Python
#UnitTest
#WebAutomation
#TestAutomation
#QA
#QualityAssurance
#WebDriver
#AutomatedTesting
#WebTesting
#TestScripts
#UIAutomation
#PythonAutomation
#SoftwareTesting
#TestCases
#SeleniumWebDriver
#TestFramework
#PythonDev
#CodeQuality
#TestSuite
#PythonCoding
#WebScraping
#AutomationEngineer
#TestDrivenDevelopment
#BrowserAutomation
#ContinuousIntegration
#TestCoverage
#PythonProgramming
#QualityEngineering
#SoftwareDevelopment
#AutomatedTests
#AgileTesting
#WebApplicationTesting
#SeleniumTesting
#Python3
#CI/CD
#WebUI
#DevOps
#AutomateEverything
#Pythonic
#TestAutomationEngineer
#SeleniumPython
#CodeTesting
#WebTestingFramework
#TestingTools
#Pythonistas
#SeleniumScripting
#TestCaseAutomation
#UnitTesting
#PythonSeleniumTips
Рекомендации по теме
Комментарии
Автор

how can we generate html reports for all the test suites run .I have already gone through the video on html-TestRunner but I tried using the steps here for the test suites and it is not working as expected . while I try to run the test suites file from the terminal, it says file not found . how do I run a file inside a package through terminal so that reports are generated in the reports folder

lekshmiramachandran
Автор

Sir,
Nice Video !! Thank you so much for the explanation, please keep up the good work.

arun
Автор

Hi, I am getting this error, loadtestfromTestCase() missing one required postional argument : 'testcaseclass'. What is this error

apekshapradhan
Автор

Dear Sir,
Can we use this test method in BDD framework ?

karankundar
Автор

Could you please create a video for "How to generate reports by running test suits please ? " @SDET

anuslifecorner
Автор

i'm getting an error as "no module named Package1" when i run All_TestSuites.py

gouthamboine
Автор

Sir I'm getting error while import package1 and 2 for test test suites, what should I do sir 18:19

dhayalans
Автор

Is it possible to execute test suite with pytest?

ANILkumar-bvuj
Автор

For anyone that is getting "module not found error", make sure that in each of your directories (just like on SDET's diagram) you have an __init__.py file defined (this is especially true for Python 2.X). The file does not need to have any contents, just make sure this empty file sits in the directory.

sierz.stradtord
Автор

Hi. Sorry for my low-level question: what is in your __init__.py files? In 'Atom' __init__.py doesn't creating by delault. Can you share the code of the __init__.py files?

When i put All_TestSuits inside the TestSuite folder cmd gives an error: Traceback (most recent call last):
File "C:\...\TestSuitesAuto\TestSuites\All_TestSuites.py", line 2, in <module>
from Package1.TC_LoginTest import LoginTest # import class LoginTest from
ModuleNotFoundError: No module named 'Package1'
But when i put All_TestSuits inside the TestSuite folder - all is working. Thank you.

valeriiilin
Автор

Add these two line in AllTestSuites.py

import sys
sys.path.append("..")

KaushikSarkar