Author: Avinash Mishra
Warning: Attempt to read property "post_id" on null in
/home3/inviula8/public_html/wp-content/plugins/enhanced-category-pages/classes/ecp/Enhanced_Category.php on line
143
Warning: Undefined array key 0 in
/home3/inviula8/public_html/wp-content/plugins/enhanced-category-pages/classes/ecp/Enhanced_Category.php on line
232
Warning: Attempt to read property "ID" on null in /home3/inviula8/public_html/wp-content/plugins/commentsafe/comment-safe.php on line 98
Warning: Attempt to read property "ID" on null in /home3/inviula8/public_html/wp-content/plugins/wp-tab-widget/wp-tab-widget.php on line 621
Selenium WebDriver
First time I realized to have a mechanism in my Selenium Test cases and the mechanism is to highlight elements while in runtime. This thought came when I was …
Selenium WebDriver
People say, “Old is Gold”. They rightly said this because when all the general commands fail to perform its operation then JavascriptExecutor comes into the picture and clears the …
Selenium WebDriver
There are some test failure situations which terminates the test execution by sending some Selenium exceptions like NoSuchElementException and ElementNotVisibileException. When we go to the root cause of failure …
Selenium WebDriver
Today we are going to discuss the scenario to handle error message in Selenium. Defect, Bug, Error– All these are synonyms to each other and refer to the same …
Selenium WebDriver
We have already discussed the technique to create dynamic XPath in Selenium WebDriver. Just for the revision, we discussed earlier- basics & definition of XPath, various XPath methods like …
Selenium WebDriver
You must have heard about Actions class in Selenium. Actions class is the heart of Selenium which allows us to perform advanced activities. So if you are a newbie …
Selenium WebDriver
This is another tutorial on advanced Selenium learning. We will again take help of Actions class while handling various Keyboard events in Selenium WebDriver. Till now we have discussed, …
Selenium WebDriver
Today we are going to discuss another mouse events handling in Selenium, which is performing double click operations in Selenium WebDriver. Again we will use the Actions class to …
Selenium WebDriver
When I was writing a Selenium Automation code then I found that the application had some functionality to perform on right click. Let me tell you about the application. …
Selenium WebDriver
There are many scenarios in which we find a list of child web elements within one parent element. The best example is Sub-menus within main parent menu. Hence, this …