Hello Mukesh, I have gone through all the videos on Selenium webdriver, I must say, The range of topics you have covered is quite awesome! kudos! to you. These videos have boosted confidence in me about automation!. Thanks a lot. Keep up the good Work!!
Hi Mukesh, Thanks for your videos. Though I have some knowledge in Selenium Webdriver I was not having confident to do automation. On seeing your videos its boosting my confident. Thanks a lot for your knowledge sharing.
Hi Mukesh Sir, First of all i wanna say u thank u so much for ur all videos....thats all awesome and helped me a lot....ur the best ....i always watch ur automation video for my all doubt , all all problems just solved ...thank u thank u so much.....i m v happy and loved ur all videos a lot....all are v v helpful for us...:):):):):)
Hi Mukesh.. i have watched your selenium tutorial videos and they are really good and easily to understand. could you please help me in going through the videos in order as i didn't see any numbering for tutorials.
Hi Mukesh, First of all I'd like to thank u for the kind of effort you have put to educate people,it's really commendable. Secondly I have a scenario wherein a timeout pop up window appears at a random instance of time stating that you have reached maximum duration with a few clickable buttons asking the user if he wishes to continue or logout. As this is a random event and it's exact encounter time can't be predicted, I am unable to automate the scenario. What I wish to check is if the user is able to click on continue and move ahead. I can obviously wait for the popup to appear and then handle it but it would be great if there is provision to handle this while the user is inputting some content like filling a form on the webpage and the popup suddenly appears(Like while a Test case is running and the pop up appeared then the already running script goes on hold and switches frame to handle the pop up post which the original TC get's resumed.).Please let me know if there is any way to handle this.
Hi Mukesh thank you so much for the videos you are posted... could you please post a video on "how to find a element/xpath in image mapping with coordinates" ex.
Hi Mukesh, I have a doubt. i have worked on some of the scenario where we click on some button , a new window open on same page and then to handle that window , I used the concept of window handling (switch to child window , perform operations on it . then moved back to parent window. ). But here in this video why we were are not switching to child window ?
hi hope u r doing good i am facing one problem can u give solution problem "This element neither has attached source nor attached Javadoc and hence no Javadoc could be found" when i make object of driver class and try to use any method like driver.get so eclipse is showing error.
Hi Mukesh , Could you please help me to resolve the below issue. I have a homepage . On home page perform some action and click on save .this is opening a Modal dialog box with huge contents and the continue button on modal dialog is visible only when zooming in browser window with 65 % else it's not visible. I need to click on continue button to proceed further.
Hi Mukesh, I have just started learning Java and Selenium. However, I was not confident about it....I was afraid of JAVA. One of my friend suggested your videos and your site. I found it to be very helpful....in fact the best Java and selenium material I have found on the internet. I have just one doubt regarding the videos. I am following the playlist that has 78 videos...is this playlist covering all the selenium and java concepts(also the sequence). And thanks again for the AWESOME content!!!
I need your help Mukesh. I am working with IE an I have this page that comes up like a pop up or new window, I can maximize it but can't do any operation on that webpage in selenium webdriver. It keep saying cannot click on element . What can I do about this please
Hi Sunday, You need to switch to the new window and then do the operation. By default, Selenium will keep the focus on the current window only. learn-automation.com/handle-multiple-windows-in-selenium-webdriver/
Mukesh otwani , I am trying to switch but I am only having one window available. The page is not using Iframe nor frame. The closest I can see is Form. On the page I can inspect element on the field but can't do any operation on that page. Saying element not visible exception. Thanks for your help
Hi Mukesh & Sunday, even am facing the same problem at my end, I have one page when I click on a link button I get a knockout js pop-up, selenium unable to enter any text or click on buttons on pop-up modal. Please let me know if you have any solution for this. Thanks in advance
Mukesh otwani I am new to selenium and was finding difficult to integrate ZAP with selenium,so thought would get some help from you. anyway thanks, will keep trying until it works☺
Hi Mukesh, My scenario is, the bootstrap popup is present in a frame however i don't want to perform any action on the popup rather i want to continue by closing the popup. How to handle this?
@@shaiksharif2442I have same issue even though i can’t sendkey to user name and password and it have no frame. If any one can done then please share the code.
Hello Mukesh, Can you please help me out with Paytm bootstrap login? i checked that the username of paytm is inside , but there is no locator as id, the only locator present at the pop up is "src", then how to switch to the bootstrap login for paytm?
Hi Mukesh , One more solution which you can suggest from your end . When we navigate to , there will default drop down of My account at run time (showing singup & login options). Hence , we cant access any other Webelement . Please post a video or solution for such scenarios . The run time drop down is neither alert nor window or frame.
Hi Mukesh, How to handle unwanted pop-up on page-load in selenium webdriver in java, pop-up have no HTML page and need to read info available in pop-up window.
Hi Namit, if it is chrome then we have so many options to handle them. Below post will guide you learn-automation.com/disable-developer-mode-extension-in-chrome-selenium/
Hello sir, I have been watching your videos. And I have a query regarding selenium The question is that HOW DO WE HANDLE POP IN EDGE BROWSER IN SELENIUM...LIKE WHEN WE CLICK ON A LINK..ON THE NEW PAGE..THE POP UP COMES..SO HOW TO HANDLE THAT...CAN YOU PLEASE TELL ME
Hi Mukesh, I tried the above concept but It is sending "NULL" value to the email. Could you please help me out. Below is the code: package Experi; import java.util.List; import java.util.concurrent.TimeUnit; import org.junit.Assert; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.Select; public class TC002 { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); driver.get("www.goibibo.com/"); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS); driver.findElement(By.xpath(".//*[@id='hdr_user_signin']/span/a[2]")).click(); driver.findElement(By.xpath(".//*[@id='id_email']")).sendKeys("prachijainatwork@gmail.com"); driver.close(); } }
I am unable to get any DOM structure... For the popup... Also it disables parent window, until i close.. Iam using IE browser,and client do not want to use other than IE
@@Mukeshotwani Thanks Mukesh... I am very glad you replied. Below is my scenario. I am working on Web Based application for insurance domain. Insurance based apps are usually popup based. In the application the pop that has been used is Modal pop up(where dom is disabled). So fortunately I had unique URL for each pop up , using this URL i am switching to that Particular window.. then using Robot class I am navigating to elements on that pop up. Well it was tedious and terrific approach but it worked.
Hello Mukesh,
I have gone through all the videos on Selenium webdriver, I must say, The range of topics you have covered is quite awesome! kudos! to you. These videos have boosted confidence in me about automation!. Thanks a lot. Keep up the good Work!!
Hi Pranav,
Thanks a ton. Keep watching.
Hi Mukesh, Thanks for your videos. Though I have some knowledge in Selenium Webdriver I was not having confident to do automation. On seeing your videos its boosting my confident. Thanks a lot for your knowledge sharing.
anandhikeetu keerthi Hi Keerthi glad to hear that.. Keep visiting..
Dear Mukesh, Your Service to Testing world is awesome. Can I expect Selenium Webdriver using Ruby in your blog soon?
Hi, Mukesh ...
Very useful for everyone and very informative .Thnx
Thanks Pankaj I am glad you liked it. Keep visiting.
Thanks Mukesh.......Its very helpful to selenium people
Welcome Santosh :)
thanks mukesh bhai.. :) your videos really helped me to become a PRO from a beginner.. really appreciate your work..
Hi Jameel bhai thanks a ton :)
Welcome.. :P
Hi Mukesh Sir, First of all i wanna say u thank u so much for ur all videos....thats all awesome and helped me a lot....ur the best ....i always watch ur automation video for my all doubt , all all problems just solved ...thank u thank u so much.....i m v happy and loved ur all videos a lot....all are v v helpful for us...:):):):):)
Hi Neetu I am very glad to see this comment. Thanks a ton. Keep learning.
Thanks Mukesh! I am waiting for your video more than one month... Happy to see you back! Once again thanks alot
+Gopi Srinivasan thanks Gopi yes so many videos on pipeline will upload soon..
I was on leave so uploaded very late..
great work mukesh.....watching your video from the last 2 month and learned so many things.......:)
+Vivek Tiwari thanks Vivek bhai keep visiting and keep learning.. Learn cucumber and appium as well because they are in demand
yes mukesh buddy ... will learn appium as well one by one....your videos are easy to understand.....:)
hi mukesh
i am quit inspired your videos because it provide me enough knowledge.
+sangeeta kumari Thank you Sangeetha
It's really nice video and easy to understand
Thanks Prashant. Keep visiting.
Nice Video Mukesh. Really helpful.
Thanks Dhaval bhai
Nice....Its really very helpful for my application
Thanks Anuj and I am glad you liked it.
Hi Mukesh..
i have watched your selenium tutorial videos and they are really good and easily to understand. could you please help me in going through the videos in order as i didn't see any numbering for tutorials.
Hi Surya I will arrange soon.
Hi Mukesh,
First of all I'd like to thank u for the kind of effort you have put to educate people,it's really commendable.
Secondly I have a scenario wherein a timeout pop up window appears at a random instance of time stating that you have reached maximum duration with a few clickable buttons asking the user if he wishes to continue or logout. As this is a random event and it's exact encounter time can't be predicted, I am unable to automate the scenario. What I wish to check is if the user is able to click on continue and move ahead. I can obviously wait for the popup to appear and then handle it but it would be great if there is provision to handle this while the user is inputting some content like filling a form on the webpage and the popup suddenly appears(Like while a Test case is running and the pop up appeared then the already running script goes on hold and switches frame to handle the pop up post which the original TC get's resumed.).Please let me know if there is any way to handle this.
Hi Mukesh thank you so much for the videos you are posted... could you please post a video on "how to find a element/xpath in image mapping with coordinates" ex.
Hi Kumar you can use tag name.
Good one Mukesh !!
Thanks Surya
Hi Mukesh, Thanks for the video. one questions u have not set any System property then how google chrome is launching.?
learn-automation.com/chrome-browser-on-mac-using-selenium/ Follow this guide to start chrome in mAC
Hi Mukesh,
I have a doubt. i have worked on some of the scenario where we click on some button , a new window open on same page and then to handle that window , I used the concept of window handling (switch to child window , perform operations on it . then moved back to parent window. ). But here in this video why we were are not switching to child window ?
hi
hope u r doing good i am facing one problem can u give solution
problem "This element neither has attached source nor attached Javadoc and hence no Javadoc could be found"
when i make object of driver class and try to use any method like driver.get so eclipse is showing error.
ANKIT SHRIVASTAVA do you want to attach src code?
Hi Mukesh,
Could you please tell how to retrieved the text from bootstrap Alert that disappears after 3 to 5 seconds on click of any button?
Hi Mukesh ,
Could you please help me to resolve the below issue.
I have a homepage . On home page perform some action and click on save .this is opening a Modal dialog box with huge contents and the continue button on modal dialog is visible only when zooming in browser window with 65 % else it's not visible. I need to click on continue button to proceed further.
Hi Mukesh,
I have just started learning Java and Selenium. However, I was not confident about it....I was afraid of JAVA. One of my friend suggested your videos and your site. I found it to be very helpful....in fact the best Java and selenium material I have found on the internet.
I have just one doubt regarding the videos. I am following the playlist that has 78 videos...is this playlist covering all the selenium and java concepts(also the sequence).
And thanks again for the AWESOME content!!!
Hi Virendra I am glad you liked all my video. Keep visiting.
Hello sir
while using redbus app i am getting these two properties,so how to write the script using these 2 properties it doesnot have id.
Contains src and contains class as frame
Hi Mukesh. thanks first!! how can we handle the unexpected advertisements? we even encountered on this video tutorial(say at duration 9.25).
+Abdul Raheem Abdul Ajeem Hi Abdul I will make video on this soon.
I need your help Mukesh. I am working with IE an I have this page that comes up like a pop up or new window, I can maximize it but can't do any operation on that webpage in selenium webdriver. It keep saying cannot click on element . What can I do about this please
Hi Sunday, You need to switch to the new window and then do the operation.
By default, Selenium will keep the focus on the current window only.
learn-automation.com/handle-multiple-windows-in-selenium-webdriver/
Mukesh otwani , I am trying to switch but I am only having one window available. The page is not using Iframe nor frame. The closest I can see is Form. On the page I can inspect element on the field but can't do any operation on that page. Saying element not visible exception.
Thanks for your help
Hi Mukesh & Sunday, even am facing the same problem at my end, I have one page when I click on a link button I get a knockout js pop-up, selenium unable to enter any text or click on buttons on pop-up modal. Please let me know if you have any solution for this. Thanks in advance
My code works fine on chrome and Mozilla but it fails to identify on IE :(
Sir when we hit the url of make my trip one modal show on screen and having problem to handle it pls help
Hi Ankur, you can use findELements method and check list size. If list size is > 0 then click on cancel popup else continue.
I like your video they are short and very easy to understand. another good video. did you work on ZAP security testing with selenium?
+dharmender patel zap security no it's new word for me
Mukesh otwani I am new to selenium and was finding difficult to integrate ZAP with selenium,so thought would get some help from you. anyway thanks, will keep trying until it works☺
+dharmender patel I will check from my end and will let u know..
Mukesh otwani Thank you☺
Hi Mukesh,
My scenario is, the bootstrap popup is present in a frame however i don't want to perform any action on the popup rather i want to continue by closing the popup. How to handle this?
Hi Swaryt to close popup either close that using close button or press keyboard event using Selenium.
@@Mukeshotwani can you please show that code.since i have trying the same for flipkart and i am not able to close that popup.
@@shaiksharif2442I have same issue even though i can’t sendkey to user name and password and it have no frame. If any one can done then please share the code.
Thanks for new video...!!
+dharmender patel welcome dharmender please share the feedback after the video
Hi Mukesh,
Please post videos on how to run only skipped test cases in Selenium web driver?
Thanks,
Shreyansh
sure will do Shreyansh.
Hello Mukesh,
Can you please help me out with Paytm bootstrap login?
i checked that the username of paytm is inside , but there is no locator as id, the only locator present at the pop up is "src", then how to switch to the bootstrap login for paytm?
Hi Sid, I have explained the solution in below video ua-cam.com/video/o_S5Bhh_aSc/v-deo.html
Hi Mukesh , One more solution which you can suggest from your end .
When we navigate to , there will default drop down of My account at run time (showing singup & login options). Hence , we cant access any other Webelement . Please post a video or solution for such scenarios . The run time drop down is neither alert nor window or frame.
Nice Idea Vishnu.. Sure I will make video on this...Thank
waiting for ur new uploads Mukesh......could u do a video in selenium interview questions
Hi Ankita, here we go ua-cam.com/video/_D9qkEUKQdE/v-deo.html
Hi
What if I want to select second signup how to proceed with that
Hi Gowtham what issues you are getting?
@@MukeshotwaniHi mukesh, I have three popups with same class and I have to go the second one and check popup elements
hello sir... i am not anle to close pop up window using htmlunitdriver in selenium please help ,e
sir am not able to interact with calendar in red bus website, am not able to click on number on calendar.
Hi Deepak,
FOllow below guide learn-automation.com/handle-calender-in-selenium-webdriver/
Helpful.....! :)
Thanks Manohar
then for flipkart how to handle that modal window as its not a frame...please help me out !!
Hi Sumiran, you can directly perform actions on that.
Hi Mukesh,i am facing problem while closing pop up window.There is no close button or close icon to close ,then how can i close .
Thanks a Lot!!!! thanks thanks thanks...You Rules!!
Most welcome Alejandro 😊
Hi Mukesh,
How to handle unwanted pop-up on page-load in selenium webdriver in java, pop-up have no HTML page and need to read info available in pop-up window.
Hi Namit, if it is chrome then we have so many options to handle them.
Below post will guide you
learn-automation.com/disable-developer-mode-extension-in-chrome-selenium/
can you make vidoes on jira ??
not good in Jira
Hi Mukesh,I am facing issue with sendkeys() Could you please help?
Is this done/fixed?
How to Handle Permission Pop-ups which is Browser Notification. It says site wants to send notification.
Yes Anjali just add below code for Chrome
ChromeOptions options = new ChromeOptions();
options.addArguments("--disable-notifications");
WebDriver driver=new ChromeDriver(options);
Anjali, I have detailed video on this ua-cam.com/video/Z3u6EfZKTFM/v-deo.html
@@Mukeshotwani thanks a lot
Hello sir, I have been watching your videos.
And I have a query regarding selenium
The question is that HOW DO WE HANDLE POP IN EDGE BROWSER IN SELENIUM...LIKE WHEN WE CLICK ON A LINK..ON THE NEW PAGE..THE POP UP COMES..SO HOW TO HANDLE THAT...CAN YOU PLEASE TELL ME
Video quality is not good as we can't see the code that you type. Explanation is very nicely done with live example
Hi Venki, It seems you are watching video on 144 p. You can watch video in HD then you can see the code.
Nice Video
Hi Mukesh,
I tried the above concept but It is sending "NULL" value to the email. Could you please help me out.
Below is the code:
package Experi;
import java.util.List;
import java.util.concurrent.TimeUnit;
import org.junit.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;
public class TC002 {
public static void main(String[] args)
{
WebDriver driver = new FirefoxDriver();
driver.get("www.goibibo.com/");
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.findElement(By.xpath(".//*[@id='hdr_user_signin']/span/a[2]")).click();
driver.findElement(By.xpath(".//*[@id='id_email']")).sendKeys("prachijainatwork@gmail.com");
driver.close();
}
}
Hi Prachi, try to apply some explicit wait or thread.sleep to fix this.
learn-automation.com/explicit-wait-in-selenium-webdriver/
how to handle dialog box where its elements cannot be inspected by F12
Hi Lokesh,
This can be done using AutoIT
ua-cam.com/video/51iuVOHGUHs/v-deo.html
ua-cam.com/video/civzNtKTCD0/v-deo.html
I am unable to get any DOM structure... For the popup... Also it disables parent window, until i close.. Iam using IE browser,and client do not want to use other than IE
Hi Kiran, unfortunately we don't have good support in IE browser.
@@Mukeshotwani Thanks Mukesh... I am very glad you replied.
Below is my scenario.
I am working on Web Based application for insurance domain. Insurance based apps are usually popup based. In the application the pop that has been used is Modal pop up(where dom is disabled).
So fortunately I had unique URL for each pop up , using this URL i am switching to that Particular window.. then using Robot class I am navigating to elements on that pop up.
Well it was tedious and terrific approach but it worked.
this is not mukesh voice is so different from other viedos
Hi Krishna its me only :)