Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
NOTIFICATION ALERT SYSTEM is a web application designed to streamline your
task management process while providing additional features such as weather
forecasting and task reminders.
GROUP MEMBERS:
SAHIL SONKER (202251115)
TANUJ SAINI (202251141)
SAPNA MEHAR (202252336)
VIVEK YADAV (202251159)
RUCHIR KUMAR (202252334)
1.Set Up Selenium Environment:
Install Selenium WebDriver and browser drivers.
Set up your programming environment and import Selenium libraries.
Create a WebDriver Instance:
Initialize WebDriver for the browser (e.g., Chrome, Firefox).
Specify the path to the browser driver executable.
Navigate to the Website:
Use get() method to go to the website's URL.
Write Test Cases:
Define test scenarios and actions (clicking buttons, filling forms, etc.).
Implement Assertions:
Verify expected behavior matches actual behavior.
Handle Dynamic Elements (if needed):
Use WebDriver's wait mechanisms for dynamic elements.
Execute Tests:
Run tests individually or as a suite.
Analyze Test Results:
Review for failures or errors.
Clean Up Resources:
Close WebDriver instance.
Iterate and Improve:
Modify tests or website code based on results.