Selenium Framework for Beginners 12 | What is Desired Capabilities | How to add Desired Capabilities

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 87

  • @mohsenbou
    @mohsenbou Год назад +1

    hello, this chapter is deprecated since Selenium 4. thanks for your work.

    • @RaghavPal
      @RaghavPal  Год назад

      thanks for the info, will check

  • @VD-en4qc
    @VD-en4qc 4 года назад

    Mate you are the best on utube!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! thanks

    • @RaghavPal
      @RaghavPal  4 года назад

      Thanks a lot Vik, Humbled

  • @waniya-huzzu
    @waniya-huzzu 6 лет назад +1

    Very informative ... I liked it too much

    • @RaghavPal
      @RaghavPal  6 лет назад

      Glad to know this Azharuddin

  • @vishalteja6312
    @vishalteja6312 2 года назад

    Which approach is best using desired capabilities to launch browser or web driver manger to launch browser…

    • @RaghavPal
      @RaghavPal  2 года назад

      WebDriver Manager is to skip the manual download and adding of browser executable file
      DesiredCapabilities to to set the options for the browser like Zoom level, window size etc
      So 2 different things here Vishal

  • @ankitchoudhary9
    @ankitchoudhary9 3 года назад

    Thanks went through a lot of videos but this really helped. Thanks again, do you provide in person training.

    • @RaghavPal
      @RaghavPal  3 года назад +1

      Most welcome Ankit

  • @romanmotovilov129
    @romanmotovilov129 5 лет назад +2

    Now, that method is deprecated. For example you can use this code:
    DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();
    capabilities.setCapability("ignoreZoomSetting", true);
    InternetExplorerDriverService service = new InternetExplorerDriverService.Builder()
    .usingDriverExecutable(new File(driverPath + "\\src\\drivers\\IEDriverServer.exe"))
    .usingAnyFreePort()
    .build();
    InternetExplorerOptions options = new InternetExplorerOptions();
    options.merge(capabilities);
    webDriver = new InternetExplorerDriver(service, options);

    • @RaghavPal
      @RaghavPal  5 лет назад

      Thanks for the information Roman

  • @DucNguyen-xn5bd
    @DucNguyen-xn5bd 5 лет назад

    Wish you can make more video abt desired capabilities, I see this library has many using in selenium and solve many stuff

  • @syedhannan8588
    @syedhannan8588 4 года назад

    You are just amazing, the quality of teaching is awesome..Tysm for your efforts for making Automation easy 😊✌️

    • @RaghavPal
      @RaghavPal  4 года назад +1

      You're welcome Syed

    • @syedhannan8588
      @syedhannan8588 4 года назад

      @@RaghavPal Are you currently working in any company?

    • @RaghavPal
      @RaghavPal  4 года назад +1

      No Syed.

    • @syedhannan8588
      @syedhannan8588 4 года назад

      Raghav bro, I have a doubt regarding poi API for excel.. Have questioned you in that video session😅

    • @RaghavPal
      @RaghavPal  4 года назад

      I will check Syed

  • @punitdixit8268
    @punitdixit8268 5 лет назад +1

    DesiredCapabilities capabilities = DesiredCapabilities.firefox();
    capabilities.setCapability("marionette", true);
    WebDriver driver = new FirefoxDriver(capabilities);
    I am learning Selenium. There is a class with name DesiredCapabilities which is used to set properties of browser. My question here is in the first statement while creating object of DesiredCapabilities class, why are we not using 'new' keyword? I am just trying to understand this concept here.
    Any answers?

    • @RaghavPal
      @RaghavPal  5 лет назад

      Hi Punit, new is used in the video. Pls check again

  • @khaledlimem4531
    @khaledlimem4531 4 года назад +1

    Hi Raghav,
    Is it possible to use safari browser for automation in Windows ?

    • @RaghavPal
      @RaghavPal  4 года назад

      Safari works on mac, so I believe there will not be a direct way to use it on windows

    • @khaledlimem4531
      @khaledlimem4531 4 года назад

      Yes I noticed it
      Thanks for your videos

  • @mikkeedamo5458
    @mikkeedamo5458 4 года назад

    Hi Raghav, is this DesiredCapabilities still good to use these days as best practice? I can only see the use of this when testing mobile app / browser in appium

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Hi Mikkee, it is if you are creating your own framework. There is much more you can do with it. Can check some examples online

    • @mikkeedamo5458
      @mikkeedamo5458 4 года назад

      @@RaghavPal thank you Raghav. Yes currently I am creating my own framework and your POM design tutorial are really good. Raghav number 1!

  • @34565431
    @34565431 5 лет назад

    Please do more vedios on desired capabilities....

    • @RaghavPal
      @RaghavPal  5 лет назад

      Sure Ramesh, I will do

    • @34565431
      @34565431 5 лет назад +1

      Thank you Raghav for considering my request. I am looking for your vedios..

  • @Manu-ey7me
    @Manu-ey7me 3 года назад

    Hi raghav,
    I am trying to automate a scenario where i need to download file on safari mobile browser, as part of that it is displaying alert with options view and download. I tried implementing alert but it throwing exception saying alert is not supported. Can you help me how to resolve this.

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Manu, will need to check on this, have you tried using appium

  • @ogrig3430
    @ogrig3430 5 лет назад +1

    In my case IE can't find any locator, nor by name, nor by xpath. The same locators work for chrome and firefox but in ie i have error message: "Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to find element with css selector == *[name='q']" or "Unable to find element with xpath == //input[@title='Поиск']". Same with the button.

    • @RaghavPal
      @RaghavPal  5 лет назад

      Hi Alexy, automation on IE is usually not so smooth as in chrome or firefox. You can check on IE the locators that work. Usually the locators that work on IE should work on chrome and firefox

    • @rudrakshgandhar3381
      @rudrakshgandhar3381 5 лет назад +1

      Same is happening for me, can't find locator

    • @adriennecheng4728
      @adriennecheng4728 4 года назад

      Hi Raghav, i am having the same issue when using desiredcapabilities to ignore "ignoreProtectedModeSettings", the script worked fine on IE if i am not using this, can you advice? thanks.

    • @adriennecheng4728
      @adriennecheng4728 4 года назад

      Update: i am able to locate the element now after set a initial browser url.
      capabilities.setCapability(InternetExplorerDriver.INITIAL_BROWSER_URL, "www.google.com");
      hope this helps.

  • @liteteeskothammudu1551
    @liteteeskothammudu1551 3 года назад

    In my organisation I have created a test automation using qaf (qmetry automation framework). My target is to run this functional test cases automatically in CICD pipeline. We have a system where when code check-in was complete then the Jenkins tool will trigger the functional test cases automatically and it runs in available VDI. We have 20-30 VDI out of which it will pick one and run the tests. Picking the random VDI means will not have standard username and password to login into application and I cannot manually enter username password because we use auto authentications(application logs in based on windows profile). My plan is to create some service account and provide access to that service account. Since the service account do not match with VDI profile. Is there any way I can make use of chrome custom profile where chrome driver wouldn't take default window profile and take custom profile related to service accounts and start executing the tests?

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Sati, not very sure, will need to check online

  • @riaaggarwal6993
    @riaaggarwal6993 6 лет назад

    Hi, Please tell me the difference between Desired Capabilities and ChromeDriver Options?

    • @RaghavPal
      @RaghavPal  6 лет назад

      Hi Ria, pls chekc this
      sqa.stackexchange.com/questions/23559/what-is-the-difference-between-desiredcapabilities-chromeoptions-and-when-to-u
      sites.google.com/a/chromium.org/chromedriver/capabilities

  • @rahulsikarwar6349
    @rahulsikarwar6349 4 года назад

    Hi Raghav, I am trying to use MS edge browser and getting this error message "Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: cannot find MSEdge binary"

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi Rahul, pls check from here in case you missed any step - www.seleniumeasy.com/selenium-tutorials/launching-microsoft-edge-browser-using-selenium-3

  • @tannislearn5454
    @tannislearn5454 4 года назад

    Can we use these desired capabilities with other browsers?
    If yes, then please also provide another example with chromedriver too.

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi, yes you can, I will plan to add more sessions on that. For now you can try with some online help

  • @sharatchandra6071
    @sharatchandra6071 5 лет назад

    Good Explanation

    • @RaghavPal
      @RaghavPal  5 лет назад

      Thanks for watching Sharat

  • @bugnay9314
    @bugnay9314 3 года назад

    Hi, Is there a way to parametarize the Desired Capabilities in katalon? because whenever I use
    download.default_directory : String : ${userDownloads}
    It is not working
    But If I use my normal Directory : download.default_directory : String : C:\Users\Brylesu\Downloads
    Files are downloading in Chrome Headless

    • @RaghavPal
      @RaghavPal  3 года назад +1

      Check this docs.katalon.com/katalon-studio/docs/introduction-to-desired-capabilities.html

  • @34565431
    @34565431 5 лет назад

    Hi Raghav,
    Looks like DesiredCapabilities is deprecated for IE browser,
    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setCapability("ignoreProtectedModeSettings", true);
    System.setProperty("webdriver.ie.driver", "D:/2019/Software/IEDriverServer.exe");
    WebDriver driver = new InternetExplorerDriver(caps);
    // InternetExplorerDriver getting string of (saying deprecated)

    driver.get("google.com");
    driver.findElement(By.name("q")).sendKeys("ABCD");
    driver.findElement(By.name("btnk")).sendKeys(Keys.RETURN);
    driver.quit();

    • @RaghavPal
      @RaghavPal  5 лет назад

      Hi Ramesh
      Now, that method is deprecated. For example you can use this code:
      DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();
      capabilities.setCapability("ignoreZoomSetting", true);
      InternetExplorerDriverService service = new InternetExplorerDriverService.Builder()
      .usingDriverExecutable(new File(driverPath + "\\src\\drivers\\IEDriverServer.exe"))
      .usingAnyFreePort()
      .build();
      InternetExplorerOptions options = new InternetExplorerOptions();
      options.merge(capabilities);
      webDriver = new InternetExplorerDriver(service, options);

    • @34565431
      @34565431 5 лет назад +1

      Thank you Raghav for your quick reply.

  • @jothimanikandankalimuthu8506
    @jothimanikandankalimuthu8506 6 лет назад

    could you please tell me how to run test cases continuously on same browser with out opening new browser or closing the exiting browser.

    • @RaghavPal
      @RaghavPal  6 лет назад +1

      Hi, you can use TestNG and create a teardown func. This will have code to close browser and it should be called after all tests have competed. And in your tests you can add the continuity for example after login test, the next test starts with homepage. Check related videos here - ruclips.net/p/PLhW3qG5bs-L8oRay6qeS70vJYZ3SBQnFa

  • @Itscrazyvinay
    @Itscrazyvinay 4 года назад

    When I try to use Desired capabilities, I got this message "The constructor InternetExplorerDriver(Capabilities) is deprecated"
    In IE Browser, displays "This is the initial start page for the WebDriver server." only

    • @RaghavPal
      @RaghavPal  4 года назад +1

      Hi Raghavendra, Use
      InternetExplorerDriverService, InternetExplorerOptions
      if you see the documentation its mentioned
      @Deprecated
      public InternetExplorerDriver(InternetExplorerDriverService service,
      Capabilities capabilities)
      Deprecated. Use InternetExplorerDriver(InternetExplorerDriverService, InternetExplorerOptions)
      www.selenium.dev/selenium/docs/api/java/org/openqa/selenium/ie/InternetExplorerDriver.html#InternetExplorerDriver-org.openqa.selenium.Capabilities-

    • @Itscrazyvinay
      @Itscrazyvinay 4 года назад

      @@RaghavPal thank you bro

  • @BogemiaRegent
    @BogemiaRegent 4 года назад

    I struggled with the IE for a long time, it can't findElement of search input in google. In console written SCRIPT5: Access is denied. Try to use InternetExplorerOptions with different capabilities but no fix. Google also didn't help. So to not lose more time, I just skip the lesson.

    • @RaghavPal
      @RaghavPal  4 года назад

      No issues Arsen, you can skip and continue with other browsers.

  • @limbritadaikalam1847
    @limbritadaikalam1847 5 лет назад

    Thank you!

    • @RaghavPal
      @RaghavPal  5 лет назад

      You're welcome Limbrit

  • @rajatswain6865
    @rajatswain6865 6 лет назад

    How to validate a image on right side of the page. Suppose a image is in right side.

    • @RaghavPal
      @RaghavPal  6 лет назад

      Hi Rajat,
      For your case, this will help
      www.maisasolutions.com/blog/How-o-get-X-Y-coordinates-of-element-in-Selenium-WebDriver
      stackoverflow.com/questions/21888317/how-to-verify-the-position-of-the-web-page-element
      In case you want to do any visual validation, you can use Applitools, I have a video in the playlist -
      ruclips.net/p/PLhW3qG5bs-L8oRay6qeS70vJYZ3SBQnFa

    • @RaghavPal
      @RaghavPal  6 лет назад

      Rajat, in live session you asked for the links. I was referring to this comment

  • @wasimakram-nz5gq
    @wasimakram-nz5gq 4 года назад

    Hi sir,
    Iam filling Application form in that we have EMail field after filling all fields if we click on save we get Success Message , after getting Success message need to flow with next functionality, if i filling application again i have given in Email filed already registered Email after filling all field if i click on Save then we get an Message like “Email already Register” after getting this message we click back button and again same functionality what we done after success Message
    Here what my doubt is Message won’t come everytime of our filling application it comes only when we give already registered Mail, when we get message then only we need click to Back button and perform next functionality
    What i did is i have taken Xpath of message use IsDisplayed() if it display then click on Back button and next functionality Else next functinalty
    For me If Message not present then else statement is not woking and also I tried with Try Catch block even not work can you please suggest anyother way to over come this.
    I think my Text is very lengthy but please suggest
    I don’t want this as 2 scenarios like(already registered mail, new mail) need in single scenario

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi Wasim, generally the condition should work here, May need to check your code and setup

    • @wasimakram-nz5gq
      @wasimakram-nz5gq 4 года назад

      If Message doesn’t display in page then
      If(messgaexpath.isdisplay()) not returing false it is stopping at if condition

    • @RaghavPal
      @RaghavPal  4 года назад

      Can check with the locators you are using, if that is able to find the message window

  • @deepakMCA2009knit
    @deepakMCA2009knit 4 года назад

    Hi Raghav, My tear down method never get called, even in my live project package.
    @AfterSuite
    public void tearDown() {

    driver.close();
    driver.quit();
    }

    • @RaghavPal
      @RaghavPal  4 года назад

      Hi Deepak, do you have any logs for this. Will need to see the code to troubleshoot

    • @deepakMCA2009knit
      @deepakMCA2009knit 4 года назад

      @@RaghavPal Yes Raghav here it is. It is as simple as just launch 3 browsers and it closes chrome, firefox but each time IE not closed and Console shows option to terminate.
      [RemoteTestNG] detected TestNG version 7.0.0
      SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
      SLF4J: Defaulting to no-operation (NOP) logger implementation
      SLF4J: See www.slf4j.org/codes.html#StaticLoggerBinder for further details.
      Starting ChromeDriver 79.0.3945.36 (3582db32b33893869b8c1339e8f4d9ed1816f143-refs/branch-heads/3945@{#614}) on port 14220
      Only local connections are allowed.
      Please protect ports used by ChromeDriver and related test frameworks to prevent access by malicious code.
      Started InternetExplorerDriver server (64-bit)
      3.150.0.0
      Listening on port 39144
      Only local connections are allowed
      1577811922867 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Deepak\\AppData\\Local\\Temp\
      ust_mozprofilesThghV"
      Dec 31, 2019 10:35:23 PM org.openqa.selenium.remote.ProtocolHandshake createSession
      INFO: Detected dialect: W3C
      This is Chrome
      Thread : 11
      Test ran successfully
      This is Firefox
      Thread : 13
      Dec 31, 2019 10:35:25 PM org.openqa.selenium.remote.ProtocolHandshake createSession
      INFO: Detected dialect: W3C
      1577811945989 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: mozillaAddons
      1577811945989 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: telemetry
      1577811945990 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: resource://pdf.js/
      1577811945990 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: about:reader*
      JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
      1577811951504 Marionette INFO Listening on port 50775
      1577811951909 Marionette WARN TLS certificate errors will be ignored for this session
      Dec 31, 2019 10:35:52 PM org.openqa.selenium.remote.ProtocolHandshake createSession
      INFO: Detected dialect: W3C
      This is IE
      Thread : 12
      JavaScript error: ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js, line 6: Error: [$injector:modulerr] errors.angularjs.org/1.4.8/$injector/modulerr?p0=Registerform&p1=%5B%24injector%3Amodulerr%5D%20http%3A%2F%2Ferrors.angularjs.org%2F1.4.8%2F%24injector%2Fmodulerr%3Fp0%3Dui.grid%26p1%3D%255B%2524injector%253Anomod%255D%2520http%253A%252F%252Ferrors.angularjs.org%252F1.4.8%252F%2524injector%252Fnomod%253Fp0%253Dui.grid%250AG%252F%253C%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A6%253A416%250Ade%252F%253C%252F%253C%252F%253C%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A24%253A186%250Ab%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A23%253A251%250Ade%252F%253C%252F%253C%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A23%253A494%250Ag%252F%253C%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A38%253A117%250An%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A7%253A333%250Ag%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A37%253A489%250Ag%252F%253C%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A38%253A134%250An%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A7%253A333%250Ag%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A37%253A489%250Aeb%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A41%253A249%250Ac%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A19%253A463%250Ayc%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A20%253A274%250AZd%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A19%253A83%250A%2540http%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fangularjs%252F1.4.8%252Fangular.min.js%253A294%253A194%250Ai%2540https%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fjquery%252F1.12.0%252Fjquery.min.js%253A2%253A27451%250AfireWith%2540https%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fjquery%252F1.12.0%252Fjquery.min.js%253A2%253A28215%250Aready%2540https%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fjquery%252F1.12.0%252Fjquery.min.js%253A2%253A30008%250AK%2540https%253A%252F%252Fajax.googleapis.com%252Fajax%252Flibs%252Fjquery%252F1.12.0%252Fjquery.min.js%253A2%253A30370%250A%0AG%2F%3C%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A6%3A416%0Ag%2F%3C%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A38%3A391%0An%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A7%3A333%0Ag%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A37%3A489%0Ag%2F%3C%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A38%3A134%0An%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A7%3A333%0Ag%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A37%3A489%0Aeb%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A41%3A249%0Ac%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A19%3A463%0Ayc%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A20%3A274%0AZd%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A19%3A83%0A%40http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fangularjs%2F1.4.8%2Fangular.min.js%3A294%3A194%0Ai%40https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.12.0%2Fjquery.min.js%3A2%3A27451%0AfireWith%40https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.12.0%2Fjquery.min.js%3A2%3A28215%0Aready%40https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.12.0%2Fjquery.min.js%3A2%3A30008%0AK%40https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.12.0%2Fjquery.min.js%3A2%3A30370%0A
      Test ran successfully
      1577811955704 Marionette INFO Stopped listening on port 50775
      [Child 4984, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1575282935/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
      [Child 3244, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1575282935/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
      [Child 3244, Chrome_ChildThread] WARNING: pipe error: 1[Parent 6700, Gecko_IOThread] WARNING: pipe error: 109: file z:/task_1575282935/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
      [Child 5488, Chrome_ChildThread] WARNING: pipe error: 109: file z:/task_1575282935/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 341
      [GPU 7796, Chrome_ChildThread] WARNING: pipe error: 109: fi

    • @RaghavPal
      @RaghavPal  4 года назад

      Okay IE usually has some issues while automation. As of now I do not have much inputs here. Will let you know if I get something online.

    • @deepakMCA2009knit
      @deepakMCA2009knit 4 года назад

      @@RaghavPal sure Raghav and thx again !👍

  • @spurthishetty6834
    @spurthishetty6834 3 года назад

    How to do the same using python script?

    • @RaghavPal
      @RaghavPal  3 года назад

      Hi Spurthi, you can check Selenium Python tutorials here - automationstepbystep.com/

  • @socialmediahappy8697
    @socialmediahappy8697 3 года назад

    why we need this
    prons and cons selwnium

    • @RaghavPal
      @RaghavPal  3 года назад

      this is handy to setup configurations or setup as we need

    • @socialmediahappy8697
      @socialmediahappy8697 3 года назад

      @@RaghavPal
      configration means

    • @RaghavPal
      @RaghavPal  3 года назад

      any setup or values to be used based on some condition or env

  • @NaveenKumar-eb8pj
    @NaveenKumar-eb8pj 5 лет назад

    HI ..
    Same is Not working with Chrome browser

    • @RaghavPal
      @RaghavPal  5 лет назад

      Hi Naveen, will need to see the code and error logs

  • @Deniz-ss1sv
    @Deniz-ss1sv 3 года назад

    :)

  • @sameergupta8987
    @sameergupta8987 5 лет назад

    Internet Explorer slow forever

    • @RaghavPal
      @RaghavPal  5 лет назад

      Hi Sameer, yes automation with IE is not that smooth