Пікірлер
@VasuKyanam
@VasuKyanam Сағат бұрын
Thanks a lot, I passed my Exam
@traveller.ash1
@traveller.ash1 2 күн бұрын
I want a job on manual testing sir is it possible can i get a job on manual and API testing in australia
@pins1522
@pins1522 2 күн бұрын
I am from the mechanical background but still able to understand each and everything's thanks for making this such a ground level and putting effort to learn ourself. //like that Cutie Pie "Hello Friends" //// really thanks
@Codingchitti_4_17
@Codingchitti_4_17 2 күн бұрын
U r really god🙏🙏🥺
@ajaysingh-pk4kd
@ajaysingh-pk4kd 2 күн бұрын
Sir, this is because of the current requirements to secure a job in the industry. The ideology and core concepts of software testing seem to have been overshadowed in the IT industry. To qualify for interviews or even get a schedule, the primary focus is on tools rather than fundamental testing principles. I genuinely enjoy the software testing field and have spent time learning and applying its core concepts. However, such efforts are rarely appreciated. Instead, I’ve observed that testing is now perceived as being solely about coding and mastering tools. While some advocate learning the core concepts, I feel that focusing only on concepts without adapting to industry demands may leave us jobless in the software testing field.
@nxpg_
@nxpg_ 2 күн бұрын
thank you so much
@pavanyjk938
@pavanyjk938 3 күн бұрын
I work on VDI with no internet connection. Can I create this mock server with out internet connection. In my postman Mock server option is available but when I click on it to create mock server, it throws an error. Any inputs on this ? Is there any other tool like this to run on VDIs without internet connection.
@nagabandivishal743
@nagabandivishal743 3 күн бұрын
Hi I am not getting run and debug option while using testng annotation of @test can someone help
@nehaagingade3718
@nehaagingade3718 3 күн бұрын
Can anybody please explain why I am getting The method get() is undefined for type chromedriver please
@subhamshorts111
@subhamshorts111 4 күн бұрын
how to right click and perform any action for example suppose if I want to click on something after right click
@T-Wali
@T-Wali 4 күн бұрын
Key Points Introduction to Handling Radio Buttons: Demonstrates how to manage radio buttons using Selenium WebDriver. Recap of using the isSelected() method for checkboxes and radio buttons to verify selection. Using Real-World Websites for Testing: The tutorial uses a live website (Singapore Airlines) to demonstrate handling radio buttons, emphasizing practical learning over test environments. Inspecting and Locating Radio Buttons: Shows how to inspect elements on a webpage to identify unique attributes (like ID) of radio buttons for precise element targeting. Selecting and Verifying Radio Buttons: Explains how to: Use the click() method to select a radio button. Use the isSelected() method to confirm if a radio button is selected or not. Handle scenarios where default selections may exist. Handling Multiple Radio Buttons: Demonstrates selecting a different radio button and verifying that the previously selected one is now deselected. Finding the Number of Radio Buttons on a Page: Utilizes the findElements() method to identify and count all radio buttons in a section or on the entire page. Explains how to locate elements with common attributes, such as name. Advanced Locator Techniques: Uses XPath with attributes like type and name to identify radio buttons. Clarifies handling of hidden or dynamically loaded radio buttons. Final Demonstration and Summary: Shows how to print the count of radio buttons. Concludes by summarizing techniques for handling and verifying radio buttons, as well as finding their count on a webpage.
@T-Wali
@T-Wali 4 күн бұрын
Summary of Selenium WebDriver Tutorial #23 - How to Handle Frames in Selenium Introduction and Importance of Frames Frames are critical in automation for interacting with embedded HTML documents within a parent webpage. Understanding frame handling is essential for efficient Selenium automation. Switching to Frames Selenium’s switchTo() method is used to control different frames or windows on a webpage. Methods like switchTo().frame() help move focus to a specific frame. Frame Identification Methods Frames can be identified by: Index (e.g., first frame starts at index 0). Name or ID attribute of the frame. Web element locator (using findElement() and storing it in a variable). Using Index for Frame Selection Example: To interact with the first frame on a page, use switchTo().frame(0). Provides flexibility when handling pages with multiple frames. Switching Back to Parent Frame After interacting with a frame, the switchTo().parentFrame() method is used to return focus to the parent document. Necessary for further actions outside the frame. Real-Life Example Using W3Schools Demonstration on interacting with a "Try it" button within an on the W3Schools website. Selenium fails without switching to the frame, highlighting the importance of this step. Handling Embedded Documents Inline frames (s) embed additional HTML documents into a parent document. Selenium inspects for tags to detect frames. Limitations Without Frame Handling Directly targeting elements in a frame without switching causes errors (e.g., NoSuchElementException). Switching Back and Handling Alerts After frame interaction, handle JavaScript alerts before switching context to the parent frame. Covered in subsequent tutorials. Encapsulation of Techniques Frame handling combines index, ID/name, and web elements for dynamic automation scenarios. Tied to handling windows and JavaScript alerts in Selenium.
@T-Wali
@T-Wali 4 күн бұрын
Key Points from "Selenium WebDriver Tutorial #24 - How to Handle Alert Popup in Selenium" Introduction to JavaScript Alerts Overview of handling JavaScript alerts in Selenium WebDriver. Alerts must be managed to continue script execution. Switching Contexts in Selenium Use the switchTo() method to handle different contexts, such as frames or alerts. Explanation of s and switching between parent and child frames. Common Alert Handling Errors "Unexpected alert open" error occurs when an alert is not handled before switching contexts. Methods to Handle Alerts accept(): Confirms the alert. dismiss(): Cancels the alert. getText(): Retrieves alert text. sendKeys(): Sends input to the alert. Example: Handling Simple Alerts Demonstration of using accept() and getText() methods to manage and validate alerts. Example: Handling Prompt Alerts Illustration of sending input (sendKeys()) to alerts that accept text and then confirming them with accept(). Code Optimization Use an Alert variable to store the alert instance for cleaner and more efficient code. Practical Demonstration Live demonstration of handling alerts, switching frames, and retrieving the parent frame’s title after managing alerts. Summary of Alert Methods Recap of methods: accept, dismiss, getText, and sendKeys, with their use cases in handling JavaScript alerts in Selenium. Conclusion Comprehensive guide on managing JavaScript alerts to enhance Selenium WebDriver scripting.
@T-Wali
@T-Wali 4 күн бұрын
Overview : The tutorial focuses on handling multiple browser windows in Selenium WebDriver, a crucial skill for automating applications that open new windows or tabs. Importance: Switching between windows is necessary when dealing with web applications that open new windows, and it's essential in automation testing. Example Website: The example used is Salesforce, where clicking on the "Start My Free Trial" button opens a new window for further input. Manual vs Selenium Control: In manual testing, you switch to a new window to fill out forms, but Selenium requires explicit instructions to switch between windows. Window Switching Issue: Selenium doesn’t automatically switch to the new window, so the script must be instructed to switch focus between the parent and child windows. Using getWindowHandles Method: Selenium provides the getWindowHandles method to get window handles, which returns a set of handles for all open windows. Window Handle Iteration: The set of window handles can be iterated over using Java’s Iterator class to switch between different windows. Practical Implementation: The script uses the switchTo().window() method with the window handle to switch to the child window and perform actions. Switching Back to Parent Window: After interacting with the child window, the script switches back to the parent window to continue testing. Final Testing and Output: The script successfully fills out fields in the child window, switches back to the parent, and prints out the window handles for verification. This tutorial demonstrates the steps required to handle multiple windows in Selenium WebDriver, including switching between windows and interacting with elements on each window.
@mumudutta3269
@mumudutta3269 4 күн бұрын
Very nice explanation. What testing technique we can use to test data export in excel. data should be exported for 1 row and 1 column and max value 300000 rows and 855 col.
@killbill065
@killbill065 4 күн бұрын
KITE AI is been discontinued from 2021. Can we know any other alternate tool
@theresaudoh7642
@theresaudoh7642 4 күн бұрын
Thank you so much.
@bindhya5028
@bindhya5028 4 күн бұрын
Thank you🙏
@arielvillarreal5569
@arielvillarreal5569 5 күн бұрын
Calidad !!!
@TestingConceptsMadeEasy
@TestingConceptsMadeEasy 6 күн бұрын
Sir please let me know if you can make a playlist on Appium beginner to advanced
@simrahsaif
@simrahsaif 6 күн бұрын
thank u soo much u made my life so much easier
@muhammadzafar2470
@muhammadzafar2470 7 күн бұрын
Similarly searching about specific product also functional testing?
@Athira-up6yc
@Athira-up6yc 7 күн бұрын
You don't cover the installation process???whyy?????
@suvarnarathi9692
@suvarnarathi9692 8 күн бұрын
Is there tutorial for java selenium automation framework ?
@softwaretestingmentor
@softwaretestingmentor 7 күн бұрын
Yes there is, please check playlists
@ManpreetSingh-y3p3x
@ManpreetSingh-y3p3x 9 күн бұрын
Error is coming on registering
@sohailvirkPHPDeveloper
@sohailvirkPHPDeveloper 10 күн бұрын
Authentication: Confirms who you are. It verifies your identity before granting access. Example: Logging into an app with a username and password. Authorization: Determines what you can access after you're authenticated. Example: After logging in, only users with admin rights can access the admin panel.
@anujapatil4879
@anujapatil4879 10 күн бұрын
Hello Manish , I am also waiting for new videos in same series.
@singiridivya7005
@singiridivya7005 10 күн бұрын
is there any pdf of this questions
@sohailvirkPHPDeveloper
@sohailvirkPHPDeveloper 10 күн бұрын
Path Variable: Part of the URL path, used to identify a specific resource. Example: /users/123 Here, 123 is a path variable that might specify user ID 123. Query Parameter: Appended to the URL after a ?, used to filter or modify the response. Example: /users?role=admin Here, role=admin is a query parameter that filters users to show only admins.
@paoxeroxe
@paoxeroxe 10 күн бұрын
Thanks for sharing 😁😁
@justminutefqt718
@justminutefqt718 10 күн бұрын
Hello Sir I need valid dump for this exam. Please
@vishwasrchonu7134
@vishwasrchonu7134 10 күн бұрын
Hi sir, could you please share with us the api links you are using? Thanks!
@Srr0000
@Srr0000 11 күн бұрын
I am india living in UAE but exam is expensive here. Can I give exam through india board?
@singiridivya7005
@singiridivya7005 11 күн бұрын
is there any pdf of these questions
@Introvert0696
@Introvert0696 11 күн бұрын
Sir do we need indepth knowledge or basic is enough
@nesrineharrathi8454
@nesrineharrathi8454 11 күн бұрын
Realy MASHALLAH you are perfect in all, i hope some days i can be perfect in even one framework :( Allah bless you, thank a lot
@AndreCampos-i8c
@AndreCampos-i8c 11 күн бұрын
Fantastic explanation, thanks!
@sutofana
@sutofana 11 күн бұрын
kisses and hugs to your son, such a cutie❤
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests and pytest libraries?
@vishwasrchonu7134
@vishwasrchonu7134 12 күн бұрын
Hi Sir, can you please make a playlist for API automation using requests library?
@RachelMartha-l9x
@RachelMartha-l9x 13 күн бұрын
hi Sir...i think smoke testing and sanity testing are missed
@aganju8286
@aganju8286 13 күн бұрын
Thank you so much for your videos, they are very appreciated. One question: if we do not add any trigger to the workflow, will it trigger and follow the flow anyway?
@RachelMartha-l9x
@RachelMartha-l9x 15 күн бұрын
Great Explanation...Tremandous Video