Hello sir, Could you please make a video about the cloud testing career path and how to become a cloud tester? What is the basic knowledge necessary to become a cloud tester? also, tell us what tools and technology are used in cloud automation testing.
@RaghavPal2 жыл бұрын
Sure Divyesh, will do a session on this
@g-skills10182 жыл бұрын
Thanks Raghav for the valuable session.
@RaghavPal2 жыл бұрын
Most welcome
@mrutyunjayarout37898 ай бұрын
How to add active element in live region ,in current scenario I have a anchor tag inside live region but wcag rules says it is not right way to put action element inside live region …what to do now I am not sure
@RaghavPal8 ай бұрын
Mrutyunjaya When working with live regions in web accessibility, it's essential to follow best practices to ensure that dynamic content changes are announced correctly by assistive technologies. Let's address your situation: 1. Understanding Live Regions: - Live regions are used to announce dynamic content changes (e.g., updates, alerts, notifications) to users of assistive technologies (such as screen readers). - The `aria-live` attribute is crucial for creating live regions. It specifies how screen readers should treat updates within the region. - There are three possible values for `aria-live`: - `off`: Changes are not announced. - `polite`: Changes are announced when the user is idle (non-disruptive). - `assertive`: Changes interrupt ongoing announcements (use sparingly for critical notifications). 2. Avoiding Action Elements Inside Live Regions: - As you mentioned, placing action elements (such as anchor tags) directly inside live regions is discouraged by WCAG guidelines. - Instead, consider the following approach: 3. Separate the Announcement from the Action Element: - Create a separate container (div, span, or other suitable element) for the live region. - Inside this container, place a non-action element (e.g., a `` or ``) that will serve as the live region. - Add the `aria-live="polite"` attribute to this non-action element. - Then, place your anchor tag (or any other interactive element) outside the live region container. Example HTML structure: ```html Content updates will be announced here. Click me ``` 4. Updating the Live Region Dynamically: - When content changes occur (e.g., due to user interactions), update the text inside the live region using JavaScript. - For instance, if the anchor tag triggers an action, you can update the live region text to announce the result of that action. Remember: - Avoid placing action elements directly inside live regions. - Do create a separate container for the live region and update its content dynamically. By following this approach, you'll ensure that assistive technologies announce content changes appropriately without violating WCAG guidelines.
@mrutyunjayarout37898 ай бұрын
Thank you so much
@nikhilbro6652 жыл бұрын
Nice information.. Your channel very helpful for testers. Thanks❤️🙏
@RaghavPal2 жыл бұрын
Most welcome Nikhil
@minakshisahar6532 жыл бұрын
Thanks you your videos are very helpful. Make some interview video with product based company employees role of testing. Please . I'm working in Wipro our manager had shared your playlist
@RaghavPal2 жыл бұрын
Noted Minakshi, Let me know if you have any volunteers for mock interview
@suneethaila9839 Жыл бұрын
Hi Sir, Could you please do full course on this topic with tools which are used mostly now. Thanks in advance
@RaghavPal Жыл бұрын
Sure I will do Suneetha
@CoddleUser210 ай бұрын
Hi Raghav, Cloud you please do full course for accessibility testing guidelines with example.
@RaghavPal10 ай бұрын
Sure, i will plan
@sumantlalljith7235 Жыл бұрын
Hi Raghav, Do you have any content on springboot or planning to cover this in future?
@RaghavPal Жыл бұрын
Hi, I will check on this, I generally take topics on testing tools and frameworks
@ManiM-o8x4 ай бұрын
Can you upload the accessibility end to end testing videos explaining the guidelines…
@RaghavPal4 ай бұрын
I will plan on this Mani
@sannidhisuraj146710 ай бұрын
How do we do this using tricnetis Tosca? Can you do a dedicated video using Tosca
@RaghavPal10 ай бұрын
I will plan
@sarvesht22012 жыл бұрын
Hi Raghav, Thanks once again for the wonderful set of content being prepared and shared by you on various topics. 1. Could you please prepare an playlist on Robot Framework architecture and how the executions are performed, interacts with nodes and prepare reports. Everything I find is working with Robot and not how Robot works at the backs n how it gets out job done 2. Basics of Ansible and automating AWS I am waiting to have these from you.
@RaghavPal2 жыл бұрын
Most welcome Sarvesh, sure I will plan on this
@williamvalenciamacalupu86722 жыл бұрын
Hello, Raghav. I have a question. I am doing a login test and the results I got from Jmeter about the load time is bigger than the time the page takes to load when I enter manually (8 secs and 1.4 secs, respectively). Do you the reason? Thanks in advance!
@RaghavPal2 жыл бұрын
Hi William, Hope you are checking with single user thread on JMeter. Also disable/delete resources/pages like images, css etc
@veeramanikrishnairrinki89312 жыл бұрын
Thanks bro such a good demo session.
@RaghavPal2 жыл бұрын
most welcome
@dasarisahith35402 жыл бұрын
Hii Raghav Can you do a video on how to extract multiple data from the excel using playwright
@RaghavPal2 жыл бұрын
I will try, meanwhile can refer some online examples
@madhavitayade58752 жыл бұрын
I am Accessibility professional, work as a team Lead in a MNC , 4 year of experience in accessibility testing.. I want to know job opportunities in accessibility field in Canada and guides kn how to find job in Canada.
@RaghavPal2 жыл бұрын
Hi Madhavi, I do not have much info on the jobs in Canada, you can reach out to some friends or consultants in this field, Can also get some information online
@kothiyalnitin2 жыл бұрын
@Madhavi, I want to ask a few things about accessibility testing as it's required in my project. Can you pls help me
@RaghavPal2 жыл бұрын
Sure
@shamlashama-kf6tt Жыл бұрын
Hi sir, I have a small problem in katalon studio. Please reply to this as soon as possible. I have a automated script in katalon. The name i enter everytime while creating a record should be unique. So I what I did is, i added below line and used it in my settext element. Problem. : System is taking unique name when it creates the record 1st time. Second time when it comes to clonning am using the same unique name there it's taking same name. Name is not unique. Could you please help me on this. Uniquename=new date()
@RaghavPal Жыл бұрын
Hi Shamla It sounds like you are using the same value for Uniquename each time you run your script, which is why the name is not unique on the second run. To ensure that the name is always unique, you can try appending a timestamp to the name instead of using the current date. Here's an example of how you could modify your code to use a timestamp: import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; // Get the current timestamp LocalDateTime now = LocalDateTime.now(); // Format the timestamp as a string DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmss"); String timestamp = now.format(formatter); // Use the timestamp in the name String uniqueName = "Record-" + timestamp; // Set the value of the text element to the unique name TestObject textElement = new TestObject().addProperty("xpath", ConditionType.EQUALS, "//input[@id='recordName']"); textElement.setText(uniqueName); This code will generate a timestamp in the format "yyyyMMddHHmmss" (e.g. 20220417153412), and append it to the string "Record-" to create a unique name. You can then use this unique name in your script to create a new record each time.
@shamlashama-kf6tt Жыл бұрын
@@RaghavPal Thank you sooo soo much sir. I will try this !
@nikhilsirsat41042 жыл бұрын
Is there any future in Tosca automation tool
@RaghavPal2 жыл бұрын
Yes, it will be a good skill to add, but do not rely only on single skill
@abhaypareek82562 жыл бұрын
Hi Raghav, Hope you're doing well, This is Abhay Pareek from the Digital Orix team, I have been watching your content for the past few months, and literally, you are doing a great job. it is informative and the quality of the content is exactly to the point. Raghav, on behalf of our team and our client Tech Grid we would also like to add our contribution to your channel by providing you with the service that they provide so that you can go ahead and test that and give a full review on your channel. it would be our pleasure to work with you. Thank you Abhay Pareek (Content Department) Team Digital Orix
@RaghavPal2 жыл бұрын
Hi Abhay, Thanks for your message As of now I may not be able to take out time for this
@NitinNandanwar2 жыл бұрын
Hi Raghav, 1 interviewer ask me : you will get status code 200 but in response data data is blank,so how will you check status code is ok, do you have other option to check?
@RaghavPal2 жыл бұрын
you can check the response headers and meta data
@prasadgadhave14752 жыл бұрын
#askraghav Hi raghav I'm getting issue while scrolling in jmeter script (selenium) for performance testing plz help me with it
@RaghavPal2 жыл бұрын
will need to check the details and logs
@prasadgadhave14752 жыл бұрын
@@RaghavPal plz take one session on it so it can help everyone
@RaghavPal2 жыл бұрын
I will check on this
@yashkaushik90492 жыл бұрын
Sir I am BTECH cse graduate but working as operation analyst for 2 years, want to switch my career is there any roadmap or way from where to start kindly help??
@RaghavPal2 жыл бұрын
I will do a session on this
@yashkaushik90492 жыл бұрын
@@RaghavPal ok sir
@roxminegames_rl65412 жыл бұрын
I want to ask how to create Properties File, I'm probably stupid
@RaghavPal2 жыл бұрын
this can help kzbin.info/www/bejne/mJ3NcmuapcuKm7M
@roxminegames_rl65412 жыл бұрын
@@RaghavPal thanks so much
@telugutalks80142 жыл бұрын
Hi Raghav sir.. Please answer my question and help me. I have exactly 9 years of experience in Testing(Manual and Api). I'm not good in automation. I realised late and started learning slowly. If I try for SDET position in coming years, they will offer me SDET 3/SDET 4 which is very difficult for me to crack and handle automation team as well. Can I apply for lower positions like SDET 1? And can I say that for the first 7 years I was mostly a manual tester and I have only 2 years of automation experience. Or can I reduce my experience to 5 years saying that I worked in BPO for first 4 years.. My current package is 17 LPA. Please suggest how can I plan my career sir..
@RaghavPal2 жыл бұрын
Hi, you can apply for lower positions, I will suggest that make a list of skills you will need and start getting yourself skilled, create personal projects and upload on repositories like GitHub. In your Resume, you can provide links to your projects, this will help in getting job