NEW CHROME FOR TESTING |UPDATE | CHROME 115.X | Python with Selenium 4.11.2 |

Поділитися
Вставка
  • Опубліковано 18 лис 2024

КОМЕНТАРІ • 61

  • @quintonrichards4805
    @quintonrichards4805 Рік тому +2

    Thank you so much; you are only the second video I could find that talks about how to launch CFT using Python in the PyCharm IDE. This was a much-needed video! You earned my sub! 👍🏼

  • @skennel8884
    @skennel8884 Рік тому +3

    you my friend, are a GEM! Nobody has been making python videos about this.

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Thank you so much, your time for feedback means a lot.
      You can support my channel in 3 ways - Like Share and Most importantly, subscribe.
      Thanks a lot...

  • @sarahshaikh383
    @sarahshaikh383 5 місяців тому +1

    Thanks a lott …..it resolved my issue of chrome window getting closed automatically…Since a week I was searching for a solution
    This video really means a lot to me
    Thank you so much again

  • @zaidabuelbeh6594
    @zaidabuelbeh6594 Рік тому +3

    Man, you are a legend ❤❤
    After Chrome updates I was never able to use Selenium.
    but after I found your video my problem has been solved.
    thanks man 🙏🙏

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Thanks Zaid, I am happy that this helped you....Will be coming with new projects video soon. Thank you so much for this appreciation ☺

  • @alok707
    @alok707 7 місяців тому +1

    Awesome....What a clear cut explanation it was. I had been struggling with this problem and trust me could'nt find the solution. Your video really helped alot. Thanks again.

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  7 місяців тому

      Dear Alok, Thanks to spare some time for the valuable feedback.
      I am glad that this video really helped you in your project or learning.
      👍

  • @zakky44A
    @zakky44A Рік тому +1

    Life Saver. Kindly add the code in the description box as well with your videos. Keep it up!!!!

  • @umair5807
    @umair5807 Рік тому +1

    Love you man. you solved my problem, I've been facing for many weeks. Subcribeddddd......

  • @ahmadwasim8035
    @ahmadwasim8035 11 місяців тому +1

    Thank brother, found this video so much useful.

  • @aminbluestack3450
    @aminbluestack3450 10 місяців тому +1

    my man you HELPED a lot,THANKS bro

  • @Rasoi_Foodie
    @Rasoi_Foodie Рік тому +1

    I was facing the browser version error, now I have used this python code and working fine for me ...116 I am using..thanks 👍

  • @augustina6212
    @augustina6212 Рік тому +1

    Absolute goat 💪💪🤝, I couldn't understand anything with this update and all videos for selenium were made before that update, tanks !

  • @legacyforfitness3096
    @legacyforfitness3096 10 місяців тому +1

    Now current chrome version is 120 and web driver is 115, will it work with selenium if version are mismatch

  • @Cornerstring-gq7yx
    @Cornerstring-gq7yx  Рік тому

    Thank you all for so much love and support 🙏👍

  • @quintonrichards4805
    @quintonrichards4805 Рік тому +1

    Would there be any differences in code between PyCharm and Microsoft Visual Studio?

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      I haven't tried Vstudio but I think ...shouldn't be especially selenium library will work like same.

  • @pratikrawat1
    @pratikrawat1 Рік тому +1

    Thanks Buddy its so much helpful

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому +1

      I am happy, you have found it helpful......good pipeline of videos is in progress....hope you have subscribed...
      Thanks pratik for your feedback!

    • @pratikrawat1
      @pratikrawat1 Рік тому +1

      @@Cornerstring-gq7yx yes i have subscribed, i want to know one thing did we have to always mention the location of chrome.exe in every program

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому +1

      @@pratikrawat1 for CFT binary files..need to pass chrome.exe...keep group posted once other way come to my notice..

  • @smjdrums
    @smjdrums 11 місяців тому +1

    Hey, thanks for taking the time to create this video. It was the most promising solution I've encountered thus far.
    I've followed these steps exactly but still my browser is closing after 2, 3 seconds.
    Any suggestions please how to resolve this issue please? I've been stuck on it for days

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  11 місяців тому +1

      chrome_options = Options()
      chrome_options.add_experimental_option("detach",True)
      I hope you have added this line of the code.

    • @rorotech8129
      @rorotech8129 5 днів тому

      Even after providing the detach option if it's closing, Maybe you're using driver.close() or driver.quit() at end of the code. That will close browser session opened for testing

  • @shahrukhahmad4127
    @shahrukhahmad4127 Рік тому

    Not working, facing this issue from past 1 week, please please help:
    error: raise exception_class(message, screen, stacktrace)
    selenium.common.exceptions.SessionNotCreatedException: Message: session not created: Chrome failed to start: exited normally.
    (session not created: DevToolsActivePort file doesn't exist)
    (The process started from chrome location C:\Program Files\Google\Chrome\Application\chrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed.)

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Hello Sharukh,
      In your case, what i can understand i.e. chrome exe binary path (not chrome driver) you are incorporating in your code is not directing to the right one where you have downloaded it.
      Secondly, just pls check your chrome version you are using , this should be exact the same version you must have downloaded and saved in the path.
      Hope this helps, and will resolve your error.
      Must revisit the video to see in detail.
      Others project videos I have covered the same CFT concept so should not be the challenge.
      Catch that small point you might have missed ....
      All the best dear !
      Keep learning keep growing 👍

  • @himanshusoni3936
    @himanshusoni3936 10 місяців тому

    Hi,
    In pycharm a whole new project and then create one python with same code of your without cft one.
    But for the line fifth it shows error
    Module not foundError:no module named 'webdriver_manager'

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  10 місяців тому

      Hi Himanshu,
      Ensure for CFT, particularly to this video content, your machine chrome version and chrome exe are same.
      120 chrome is latest one and stable release you can download or use from chrome for testing availability website page.
      Hope this helps !
      At the time of video, 116 I think was the stable one used.
      Pls subscribe to stay tuned for upcoming videos.
      Thanks and all the best !

  • @Anjalijain-y1u
    @Anjalijain-y1u 9 місяців тому

    Sir with cft I am following the same code as yours but getting error in line no.5 how to resolve this error

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  9 місяців тому

      Hi There, As i have not seen the error message but most probably there can be only one issue i.e. please ensure the chrome version you are using in your system and CFTA (googlechromelabs.github.io/chrome-for-testing/) dashboard is similar. 121 is latest stable.
      Rest all is same, no issue should be there.

  • @Bugsy0987987
    @Bugsy0987987 9 місяців тому

    When I am trying to open the second tab I recieve 1020 error, first tab work's great

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  8 місяців тому

      Please revisit the video and watch carefully to find that dot which was not connected...that should Work..

  • @Market_Maker09
    @Market_Maker09 Рік тому

    I am getting a error module object is not callable

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Typically, this happens when you try to import a module as a function.
      Without code access, can't say much in ur case.
      Would suggest you to go line by line and review/match your code again.
      Hope you are using latest version of selenium.
      All d best !

  • @jyotiranjanbiswal5186
    @jyotiranjanbiswal5186 Рік тому

    from invalid argument: unrecognized chrome option: detech I am facing this error

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Hey,
      Spell - Should be "detach" while using chrome option ..
      Hope you have subscribed for upcoming project videos notifications.

    • @jyotiranjanbiswal5186
      @jyotiranjanbiswal5186 Рік тому

      'powershell' is not recognized as an internal or external command,
      operable program or batch file.@@Cornerstring-gq7yx

    • @jyotiranjanbiswal5186
      @jyotiranjanbiswal5186 Рік тому

      can you help me to do that after detach also facing the same issue

  • @jyotiranjanbiswal5186
    @jyotiranjanbiswal5186 Рік тому

    Please make a clear VDO.

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Hi Dear, Kindly Click video settings option and advanced, choose 1080 video clarity , will play in actual pixels it's created ...hope this helps 👍

    • @jyotiranjanbiswal5186
      @jyotiranjanbiswal5186 Рік тому

      @@Cornerstring-gq7yx brother I am not talking about picture clarity. I am trying to tell you is make a video with proper details so that someone can understand better in the middle you skip some part I don't know why I tried 5times but not getting result

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Hi Dear, Actually i tried to cover all components incase if you have felt something is missed..will revisit.
      Thanks for sharing your experience.
      Happy learning !!

    • @jyotiranjanbiswal5186
      @jyotiranjanbiswal5186 Рік тому +1

      @@Cornerstring-gq7yx for me it's confusing and you skipp some part in the middle for me I am not getting solutions others are getting then no worries keep going buddy ✅

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      @@jyotiranjanbiswal5186 Dear, if you check my other videos posted after this one - 1) scraping web table
      2) Automation dynamic website
      Starting foundation code upto driver.maximize_window , you will observe that it's all same used in CFT this video.
      I am surprised and sad to know that it's not working for you.
      Could you pls revisit the code ...
      Chrome version you are using on your system ( 116 )
      Binary file is downloaded and correct path is provided in the code.
      This is the best I can suggest you here. Thanks for understanding!!
      Will be coming soon with more interesting project videos..stay tuned

  • @Rashedul-z7y
    @Rashedul-z7y Рік тому

    But it is not working now...

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Chrome 117 stable build is out now
      Download the chrome exe from googlechromelabs.github.io/chrome-for-testing/#stable
      and provide path in one line of code only
      chrome_options.binary_location =
      Hope this helps my friend !

    • @Rashedul-z7y
      @Rashedul-z7y Рік тому

      @@Cornerstring-gq7yx I tried it but when i visit this site it comes with ..This site can not be reached.

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Chrome driver gets auto downloaded and installed.
      But for chrome.exe you need to download 117 and provide path of the directory where you have stored it....this should resolve in your scenario....all the best..

  • @paraskapoor9141
    @paraskapoor9141 Рік тому

    not working

    • @Cornerstring-gq7yx
      @Cornerstring-gq7yx  Рік тому

      Hi Paras, What's the error you are getting ?
      Ensure for CFT, particularly to this video content, your machine chrome version and chrome exe are same.
      118 chrome is latest one and stable release you can download or use from chrome for testing availability website page.
      Hope this helps !
      At the time of video, 116 I think was the stable one .
      Pls subscribe to stay tuned for upcoming videos.
      Thanks and all the best !

    • @shahrukhahmad4127
      @shahrukhahmad4127 Рік тому

      and in which directory we need to keep this ???@@Cornerstring-gq7yx