Web Automation With Robot Framework II Complete Tutorial

  Рет қаралды 41,441

Coders Arcade

Coders Arcade

Күн бұрын

Пікірлер: 83
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@untitledanonymous3400
@untitledanonymous3400 2 жыл бұрын
OMG !! Finally got a video that covers entire Robot framework. Thank you man, You got another subscriber here..
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@mojahidali
@mojahidali 2 жыл бұрын
Very Good Initiative, I was looking for a Full Tutorial on Robot Framework since long, but finally got it here, Thanks a lot for this. Pls keep making such videos in future. again thanks a lot
@CodersArcade
@CodersArcade 2 жыл бұрын
Very happy to help 😊. All the best 👍
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@ansbhatti5988
@ansbhatti5988 2 жыл бұрын
one of the best video series really well work Sir keep updating us about ROBOT framework
@CodersArcade
@CodersArcade 2 жыл бұрын
Thanks 👍
@johndondon384
@johndondon384 Жыл бұрын
Great video
@CodersArcade
@CodersArcade Жыл бұрын
Thanks 👍
@ganeshsmart4968
@ganeshsmart4968 2 жыл бұрын
I didn't find chropath and selectorhub in web site inspect. Please let know what is the way to find cropath.Thanks
@CodersArcade
@CodersArcade 2 жыл бұрын
Chropath is deprecated. Use the Selectors Hub chrome extension. Restart your browser and try again.
@cgiannopoulos13
@cgiannopoulos13 2 жыл бұрын
Great video. Intellibot no longer works with latest selenium library. Any solutions?
@RAKESHKUMAR-hx3gy
@RAKESHKUMAR-hx3gy 2 жыл бұрын
Thanks for complete tutorial. Can you please make project on E-Commerce using robot-framework end to end as it will be really helpful also all of us who are following you tutorial.
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@maint-account8477
@maint-account8477 2 жыл бұрын
HI thanks for your video. Can Robot Framework be used to Automate Dynamics 365. I am looking for the best way to Automate Dynamics 365
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@11MeJust
@11MeJust 2 жыл бұрын
Hello! After I open the browser on google website the cookies policy shows up and cannot find the xpath for the accept cookies button. Thank you!
@CodersArcade
@CodersArcade 2 жыл бұрын
That is an exception. It's actually an alert box and there is a proper video on handling alerts in Robot Framework in our channel. Please go through that section. You will have a demonstration of how to handle alerts in Robot Framework.
@cgiannopoulos13
@cgiannopoulos13 2 жыл бұрын
@@CodersArcade Same issue here, i tried the alert handling techniques from your other video but the cookie consent window does not disappear :(
@davidnovakovic5448
@davidnovakovic5448 2 жыл бұрын
Hi , when I click on "venv" I cannot see scripts folder, only bin, and lib ...what to do? Thank you in advance
@CodersArcade
@CodersArcade 2 жыл бұрын
There's some issue with your Project Creation. Please follow the video again and create a new project. I am sure you will get it if you follow the steps accordingly.
@davidnovakovic5448
@davidnovakovic5448 2 жыл бұрын
@@CodersArcade Thank you , I have set new path and it works
@andyrockstar78
@andyrockstar78 9 ай бұрын
Thanks for this
@artirixlondon272
@artirixlondon272 2 жыл бұрын
I am getting this error AttributeError: 'WebDriver' object has no attribute 'find_elements_by_xpath'. When I enter the xpath against the google text box. Infact I am getting this error against any xpath I have written. Any suggestions would be much appreciated.
@CodersArcade
@CodersArcade 2 жыл бұрын
Selenium has removed the method that you are using from version 4.3.0 So, now these are the changes : Selenium 4.3.0 * Deprecated find_element_by_* and find_elements_by_* are now removed (#10712) * Deprecated Opera support has been removed (#10630) * Fully upgraded from python 2x to 3.7 syntax and features (#10647) * Added a devtools version fallback mechanism to look for an older version when mismatch occurs (#10749) * Better support for co-operative multi inheritance by utilising super() throughout * Improved type hints throughout. Therefore: You now need to use: driver.find_element("xpath", '//*[@id="mG61Hd"]/div[2]/div/div[2]/div[1]/div/div/div[2]/div/div[1]/div/div[1]/input')
@monakamp5730
@monakamp5730 2 жыл бұрын
Thank you so much for your solution it worked but now I have an issue with the login cases I was writing they give an error it says " Element with locator 'name:Username' not found. I tried many times to put UserName and Username both gave me the same error
@CodersArcade
@CodersArcade 2 жыл бұрын
Hii Mona, if you are getting this error that means you are not writing the locator exactly the same as given in the website code, locator name is case-sensitive so you need to write the locator name exactly the same as the website code, to check, right-click in any empty area on the website and click inspect, once you do that you need to read the HTML code properly, once you see the HTML code on the right hand side of the screen try to hover you mouse cursor above that HTML code on the right hand side of the screen this way it will highlight the respective block of website on the left hand side on your screen and you will get to know which part of the code belongs to which part of the website, this way your acuracy will improve and you will be able to find locators more easily, just make sure that the name of your locator is exactly the same as in the HTML code which u get after inspecting your website...!! I hope this helps! Thankyou..!
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@kalpnarawat-vi5ph
@kalpnarawat-vi5ph Жыл бұрын
Nice explanation and good video. Can you explain how you can automate if I want to automate youtube scrolling and select a video and play.
@akashthemasterstoryteller2267
@akashthemasterstoryteller2267 Жыл бұрын
Hi, how to write the test case for capturing the error message for the login screen in robotframework using pycharm as editor
@Vrweddings43
@Vrweddings43 2 жыл бұрын
Can we drag and drop an element to the particular position using robot framework
@monakamp5730
@monakamp5730 2 жыл бұрын
Hi there I tried to run the Google Chrome test case it did work at first but after 10 days I tried again it give an error in the terminal saying " cannot open local Terminal" failed to start powershell.exe in c:/ ....... Error running process: and so on. Please help because I did follow the first videos step by step
@CodersArcade
@CodersArcade 2 жыл бұрын
Hii Mona , there can be possibilities for 3 problems, FIrst - Your PyCharm may not be updated, try updating PyCharm to the latest version, Second - Your Chrome Driver may be outdated usually this happens when we work in Web Automation, we need to take care of the drivers of our web browser, usually web browsers get updated time to time so we need to make sure our chrome driver matches to the latest version of chrome that is out there, so this also can be one of the problem, Third - make sure that your system path variables have all the required path(for this u can watch one of our video, here is the link - kzbin.info/www/bejne/d4C7ZJxphamEZtU), I hope it helps out, Thanks
@monakamp5730
@monakamp5730 2 жыл бұрын
@@CodersArcade thank you very much. I will try your solutions and get back to you
@monakamp5730
@monakamp5730 2 жыл бұрын
Dear sir, I need to uninstall everything you have install with the pycharm and re-install everything again to see if it is going to work or not. I have followed your vedio step by step for how to install and it worked fine but since two days ago I had that error I told you about yesterday. Please help
@CodersArcade
@CodersArcade 2 жыл бұрын
Okay try this - Open PyCharm - Files - Settings - Tools - Terminal - and there you will see shell path copy and paste this - C:\Windows\System32\cmd.exe and try again and dont forget to apply the changes and press ok
@monakamp5730
@monakamp5730 2 жыл бұрын
@@CodersArcade copy what in what exactly
@janaltwinpineda1430
@janaltwinpineda1430 Жыл бұрын
Hi sir, Why is my browser is closing after running the last command even though I did not close the browser
@CodersArcade
@CodersArcade Жыл бұрын
Can you share the code ? Need to check what's going wrong...!
@neoanderson5880
@neoanderson5880 Жыл бұрын
thanks very much. I got an error toward the end of the course where you have aligned username and password with the test cases section.
@sreedev989
@sreedev989 2 жыл бұрын
I followed your steps and created the test.robot file. but I couldn't see the at robot icon for the robot file. I could see only the file icon for that
@srinivasuluthota8890
@srinivasuluthota8890 Жыл бұрын
Bro I'm getting this error bro // TypeError: WebDriver.__init__() got an unexpected keyword argument 'service_log_path' how reslove this please replay me ASAP
@Lakshmikumari-pu6di
@Lakshmikumari-pu6di 4 ай бұрын
Please make one full video for Api automation using robot framework with python
@yaswanthyerramsetti5254
@yaswanthyerramsetti5254 Жыл бұрын
I want notes about this. is that possible?
@CodersArcade
@CodersArcade Жыл бұрын
This is the link to a Robot Framework Tutorial PDF: You will get details about all the stuff related to Robot Framework in this PDF: drive.google.com/file/d/1NTMC4xWDv3w_BA8s7YEtvZC-uhVhQrOJ/view?usp=drivesdk
@priyagurde8968
@priyagurde8968 Жыл бұрын
Hello, In my PyCharm, when I try to install the Intellibot plugin, it asks me to restart PyCharm after installation. However, I encounter an error message stating that the Intellibot plugin is not from JetBrains, and I'm advised to report the problem to Millennial Media. I have also tried downloading the Intellibot JAR file from the JetBrains official site and adding it to my PyCharm, but I still receive the same error message after restarting PyCharm. How can I resolve this error?
@CodersArcade
@CodersArcade Жыл бұрын
Please try to use this link to download the Intellibot plugin github.com/mtrubs/intellibot This should work.
@priyak.6915
@priyak.6915 2 ай бұрын
I tried instead of chrome in Edge but it gives error i download Edge webdriver also can you some suggestions where i am get mistake
@sreekanthreddy107
@sreekanthreddy107 2 жыл бұрын
Hi Team, I am using VS Code to develop my scripts, On VS Code i am not able to add Excel Library file and getting some error. Can someone please help me on this. Thanks in advance
@CodersArcade
@CodersArcade 2 жыл бұрын
Hii, Sreekanth working on vs code with robotframework may be a little different as compared to PyCharm because the way we use our libraries in PyCharm is somewhat different than that of vs code, just because vs code has its own learning curve, projects in vs code works differently, sooo for now we recommend you to use PyCharm for robotframework because PyCharm is the best for beginners and specially in case of RobotFramework, you should start learning this kind of framework first in basic IDE and then later on when you are confident enough you can move of to vs code, after sometime we will also make a video on how to use vs code for RoboFramework, because for that again we need to change the way we work in robotframework just because the IDE or Environment is changed!! I Hope this helps you, Thank You
@sreekanthreddy107
@sreekanthreddy107 2 жыл бұрын
Thanks for your Update and Suggestion team.
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@alimcheik8431
@alimcheik8431 Жыл бұрын
No suggestions to my pycharm and also i changed the robotframework-seleniumlibrary to other version still same problem
@CodersArcade
@CodersArcade Жыл бұрын
Thanks for your query. Go to github.com/lte2000/intellibot/blob/develop/intellibot.jar Download the jar file Open PyCharm -> Settings -> Plugins -> Click on Setting Icon (Right side from the Installed tab) -> Select Install plugin from disk Import the jar file in PyCharem editor Click on Restart Try after that. It should work...!!!
@chandraseshanN
@chandraseshanN 2 жыл бұрын
'm behind Proxy network. Fails to open Browser too on execution. How to overcome this error : LocationParseError: Failed to parse:
@letstalkmusic9369
@letstalkmusic9369 2 жыл бұрын
Does anyone know how to enable that auto-complete property for commands? everything working fine for me but in the video, he is getting suggestions when he starts to type the command and that is not happening in my pycharm.
@CodersArcade
@CodersArcade 2 жыл бұрын
You need to install the intellibot plugin. Refer this video: kzbin.info/www/bejne/r5LEZ42pgrN6j8k
@monakamp5730
@monakamp5730 2 жыл бұрын
Hello, I wonder if you have a video on how to login to a hospital information system based on ID number and password.
@JeanLuemusic
@JeanLuemusic 2 жыл бұрын
Thank you so much
@chetanyasaini3899
@chetanyasaini3899 2 жыл бұрын
My test cases keyword open browser not working....it says keyword not found
@CodersArcade
@CodersArcade 2 жыл бұрын
Make sure the Chrome version and the ChromeDriver version are same. Otherwise it won't work.
@CodersArcade
@CodersArcade 2 жыл бұрын
You have to include a line in your *** Settings *** section that says : Library | SeleniumLibrary and you might also need to run pip install --upgrade robotframework-seleniumlibrary This will also update your selenium library. Please make these changes and run your test case again.
@chetanyasaini3899
@chetanyasaini3899 2 жыл бұрын
@@CodersArcade yeah thanks u r very talented....these two things I was missing😭❤️
@CodersArcade
@CodersArcade 2 жыл бұрын
Welcome 😊. It's all about experience. You will also gain it with practice. All the best 👍
@shaileshsalunke3184
@shaileshsalunke3184 Жыл бұрын
Hello Can you provide link of that practice selenium form in description box ??
@CodersArcade
@CodersArcade Жыл бұрын
Currently that dummy website is down because the owner has removed the application from the server. In the meantime you can use our demo web application for practising automation related tasks : sauravsarkar-codersarcade.github.io/ca_automationpractice.com/index.html
@shaileshsalunke3184
@shaileshsalunke3184 Жыл бұрын
@@CodersArcade Thank you
@CodersArcade
@CodersArcade Жыл бұрын
Welcome 🤗
@thummabincy271
@thummabincy271 2 жыл бұрын
Can I know how can I create and write into an excel file using robot framework in pycharm
@CodersArcade
@CodersArcade 2 жыл бұрын
You can create and write to excel file using the xlsxwriter module. Just use the command: "pip install xlsxwriter" in the terminal. Sample Code : # import xlsxwriter module import xlsxwriter # Workbook() takes one, non-optional, argument # which is the filename that we want to create. workbook = xlsxwriter.Workbook('hello.xlsx') # The workbook object is then used to add new # worksheet via the add_worksheet() method. worksheet = workbook.add_worksheet() # Use the worksheet object to write # data via the write() method. worksheet.write('A1', 'Hello..') worksheet.write('B1', 'Coders') worksheet.write('C1', 'Arcade') worksheet.write('D1', 'KZbin') # Finally, close the Excel file # via the close() method. workbook.close()
@thummabincy271
@thummabincy271 2 жыл бұрын
@@CodersArcade Then how can I connect this code to robot file??
@thummabincy271
@thummabincy271 2 жыл бұрын
Can you please send me a sample code how can I work in .robot file to attach that .py file to robot file
@CodersArcade
@CodersArcade 2 жыл бұрын
You can go through the Data Driven Testing Video in our Robot Framework playlist. The steps are given properly.
@thummabincy271
@thummabincy271 2 жыл бұрын
@@CodersArcade I'm going through it, incase of any doubts will reach back to you, thanks for the support
@nileshbinayak7753
@nileshbinayak7753 3 жыл бұрын
Nice one 👍..sir. I am facing issue Please resolve How to allow and block Browser Pop up. I am able to handle web pages alert . But facing issue on browser alert
@CodersArcade
@CodersArcade 2 жыл бұрын
If you want to learn to read coding language in Hindi, please need our robot framework python java and our Hindi channel Coders Arcade Hindi has been subscribe soon Link : kzbin.info/door/RQJ7qbbTktJ0eGSogg7FJA
@kritsadakornkongubol3180
@kritsadakornkongubol3180 2 жыл бұрын
use latest pycharm plugin , intellibot #patch
@manish89arya
@manish89arya 2 жыл бұрын
I think we can't include more test cases in the file where we are using Test Template kzbin.info/www/bejne/e6O3f2ioepunbtU This seems to be a huge limitation !!!
@manish89arya
@manish89arya 2 жыл бұрын
you have loved my comment .... could u please share ur thoughts too on this it will be helpful
First Test Case using Robot Framework in PyCharm IDE.
23:15
Coders Arcade
Рет қаралды 39 М.
Robot Framework Explained
10:32
Suchdeep
Рет қаралды 9 М.
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 23 МЛН
Robot Framework Tutorial For Beginners | Robot Framework With Python
1:22:40
New divisibility rule! (30,000 of them)
26:51
Stand-up Maths
Рет қаралды 380 М.
Web Automation using Python To Fill out A Form
16:37
Rishab Kattimani
Рет қаралды 159 М.
The Simplest Tech Stack
9:38
Awesome
Рет қаралды 135 М.
Robot Framework Python - Setup in Tamil
13:40
RobotAutomation Tutorial
Рет қаралды 1,9 М.
How to use ExcelLibrary to read Excel Data in Robot Framework
15:10