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.
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
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.
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
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.
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!
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()
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.
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?
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.
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
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
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??
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..
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
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.
Sure Divyesh, will do a session on this
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
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.
Thank you so much
Thanks Raghav for the valuable session.
Most welcome
Nice information.. Your channel very helpful for testers.
Thanks❤️🙏
Most welcome Nikhil
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
Noted Minakshi, Let me know if you have any volunteers for mock interview
Hi Raghav,
Cloud you please do full course for accessibility testing guidelines with example.
Sure, i will plan
Hi Sir, Could you please do full course on this topic with tools which are used mostly now. Thanks in advance
Sure I will do Suneetha
Can you upload the accessibility end to end testing videos explaining the guidelines…
I will plan on this Mani
How do we do this using tricnetis Tosca? Can you do a dedicated video using Tosca
I will plan
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.
Most welcome Sarvesh, sure I will plan on this
Thanks bro such a good demo session.
most welcome
Hii Raghav
Can you do a video on how to extract multiple data from the excel using playwright
I will try, meanwhile can refer some online examples
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!
Hi William, Hope you are checking with single user thread on JMeter. Also disable/delete resources/pages like images, css etc
Is there any future in Tosca automation tool
Yes, it will be a good skill to add, but do not rely only on single skill
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()
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.
@@RaghavPal Thank you sooo soo much sir. I will try this !
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?
you can check the response headers and meta data
Hi Raghav,
Do you have any content on springboot or planning to cover this in future?
Hi, I will check on this, I generally take topics on testing tools and frameworks
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.
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
@Madhavi, I want to ask a few things about accessibility testing as it's required in my project. Can you pls help me
Sure
I want to ask how to create Properties File, I'm probably stupid
this can help ua-cam.com/video/bljA8dpfWeQ/v-deo.html
@@RaghavPal thanks so much
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
Hi Abhay,
Thanks for your message
As of now I may not be able to take out time for this
#askraghav Hi raghav I'm getting issue while scrolling in jmeter script (selenium) for performance testing plz help me with it
will need to check the details and logs
@@RaghavPal plz take one session on it so it can help everyone
I will check on this
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??
I will do a session on this
@@RaghavPal ok sir
Good video
Thanks Mihai
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..
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