Collections | Robot Framework
6:06
String Library | Robot Framework
4:56
Run Robot Tests on Docker WSL
10:57
JSONLibrary in Robot Framework
5:36
Пікірлер
@maopuerta3430
@maopuerta3430 19 сағат бұрын
good job
@TennoTacticsPH
@TennoTacticsPH Күн бұрын
Thank you for the video 🙏 Can also help to create a guide on how to automate the execution of allure commands after the robot test has been completed instead of manually executing from Terminal. Thank you and more power!
@seniorQA
@seniorQA Күн бұрын
Actually there is a Plugin that can be installed in PyCharm IDE. It is called Allure TestOps. But I am facing issue with it. I will try to see a way to automate the steps and post a session on it soon. Thanks for your comment.
@djnormus
@djnormus 20 күн бұрын
Awesome video and great job 👏 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@maciejetmanowicz1412
@maciejetmanowicz1412 28 күн бұрын
Mate, your xpaths burnt out my eyes... I think you should work on it. Part of needed values you can either get through datetime or pendulum libraries. Multiple code repetitions doesn't help here either...
@seniorQA
@seniorQA 27 күн бұрын
@maciejetmanowicz1412 Sorry to burn out your eyes, that was not the intention. Thanks for your suggestions.
@muzak_nat
@muzak_nat Ай бұрын
For auto suggestions which plugins are installed?
@seniorQA
@seniorQA 27 күн бұрын
@muzak_nat Are you asking about the library used for excel reading?
@feerfeja
@feerfeja Ай бұрын
So happy to find your channel.) Thank you for this videos!
@feerfeja
@feerfeja Ай бұрын
Thank you so much for the useful video! You are he best
@RoshanBhusal-gi3ut
@RoshanBhusal-gi3ut Ай бұрын
Thanks, it helped.
@seniorQA
@seniorQA Ай бұрын
Thanks Roshan.
@skgunda
@skgunda Ай бұрын
How to do the same check on another remote server/machine ?
@seniorQA
@seniorQA Ай бұрын
@skgunda I think winrs can be used to get into remote Windows machine using powershell. And then use the same commands to check.
@skgunda
@skgunda Ай бұрын
@@seniorQA Let's say we have 100 servers. And I want to check for a particular location , ex E:\Path\Folder1\Folder2 on all 100 servers. If it's available may be I will outputt a string 'exists' and if unavailable then 'not exists'. Thanks again.
@seniorQA
@seniorQA Ай бұрын
So checking more on this, there is Invoke-Command cmdlet that is used to execute commands on a remote machine. Below is untested code: # List of remote machine names or IPs $remoteMachines = @("Machine1", "Machine2", "Machine3", "Machine4",....,"Machine100) # The folder path to check $folderPath = "E:\Path\Folder1\Folder2" # Loop through each machine and check if the folder exists foreach ($machine in $remoteMachines) { # Using Invoke-Command to run the script block on remote machines Invoke-Command -ComputerName -Credential $machine -ScriptBlock { param ($folder) if (Test-Path -Path $folder) { # If folder exists echo "Folder exists." } else { # If folder does not exist echo "Folder doesn't exist." } } -ArgumentList $folderPath }
@skgunda
@skgunda Ай бұрын
@@seniorQA Thank you so much. Will test this today.
@kalok4419
@kalok4419 Ай бұрын
Good video, thanks
@DenisdosSantosLima
@DenisdosSantosLima Ай бұрын
Thank you!!
@djnormus
@djnormus Ай бұрын
amazing video 👍👏 THANK YOU 🙏
@djnormus
@djnormus Ай бұрын
amazing video 👏
@c.saitejagoud9246
@c.saitejagoud9246 Ай бұрын
Hi, I am unable to find .kaggle folder to place the JSON file any solution ?
@seniorQA
@seniorQA Ай бұрын
Hi @c.saitejagoud9246 you can create .kaggle folder. You can use mkdir command in Windows.
@Unknow88
@Unknow88 2 ай бұрын
Thanks!
@GayathriRamkumar-n6t
@GayathriRamkumar-n6t 2 ай бұрын
Hi Thanks for your videos on browser library. it was very much useful and informative. For some of the videos I dont get audio. is there any thing i need to check at my side thanks
@seniorQA
@seniorQA 2 ай бұрын
Thanks Gayathri. Yes there is no audio, just text instructions. Will try to add voice in future videos. 🙂
@kandilamvs8469
@kandilamvs8469 2 ай бұрын
Thank you bro you've just saved my life
@seniorQA
@seniorQA 2 ай бұрын
Nice!! Thanks.
@muzak_nat
@muzak_nat 3 ай бұрын
Instead of passing xpath - Invalud credentials.. directly we can creat keyword Eg: Page should contain 'Invalid credentials '
@naturesADHD
@naturesADHD 3 ай бұрын
your audio is panned to the right
@seniorQA
@seniorQA 3 ай бұрын
You are right my friend. I didn't realize it during editing. I could have fixed it that time. Sorry for the inconvenience.
@naturesADHD
@naturesADHD 3 ай бұрын
@@seniorQA no problem thanks for your video!
@djnormus
@djnormus 3 ай бұрын
Always the best 👍👍👍 Thank you 🙏
@djnormus
@djnormus 3 ай бұрын
Thank you for the video 🙏
@darkmother96
@darkmother96 3 ай бұрын
any idea about ?
@seniorQA
@seniorQA 3 ай бұрын
@@darkmother96 you can checkout this link: kzbin.info/www/bejne/m4KmdX19hq5_rtUsi=uTqXfDuSe0i3CBqz
@DasharathArashingeri
@DasharathArashingeri 3 ай бұрын
There is no github link in description
@DasharathArashingeri
@DasharathArashingeri 3 ай бұрын
Nice video! Please make more videos on the Robot Framework Browser library. A slight correction to your code: it's not running with 'Type Secret'. We need to replace 'Type Secret' with 'Type Text' for it to run successfully; otherwise, it gets an error.
@seniorQA
@seniorQA 3 ай бұрын
@DasharathArashingeri Thanks Dasharath. Sure.
@DasharathArashingeri
@DasharathArashingeri 3 ай бұрын
@@seniorQA plzz make more videos on browser library from basic to intermediate and arrange the videos Playlist from easy to medium so that we can catch up the context easily
@martinalvarez4632
@martinalvarez4632 3 ай бұрын
Hello! Thank you for the video. I'm curious about how to incorporate a FOR loop inside a Template. Specifically, I'm attempting to iterate through each row of an Excel file and use each row as an argument, do you know if this is possible?
@seniorQA
@seniorQA 3 ай бұрын
Hi Martin. Thanks for your question. It is possible. You can check this documentation: robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#test-templates I will try an example and post.
@djnormus
@djnormus 3 ай бұрын
Big thanks 😊 for uploading the video I requested! You nailed it, as always. Your content never disappoints, and this one was exactly what I needed. Keep being awesome! 👏
@seniorQA
@seniorQA 3 ай бұрын
Appreciate your kind words. Thanks a ton!!
@Moncefbendal
@Moncefbendal 4 ай бұрын
well explained
@djnormus
@djnormus 4 ай бұрын
Hi, Thanks a lot for making this video! It’s exactly what I needed Really appreciate it! Thanks … thanks 🙏
@seniorQA
@seniorQA 4 ай бұрын
Glad it was helpful!
@spandanakaru4628
@spandanakaru4628 4 ай бұрын
@seniorQA sir, selenium code throwing nosuchelementexception at line 31 in the github code please check. You have used absolute xpath, can help with code by using relative path as absolute xpath is not good practice. Also when i try to inspect on any date in calendar option, i cannot see the relative html tag of the date to write the xpath. I dont know how you able to write absolute xpath. please help
@seniorQA
@seniorQA 4 ай бұрын
Hi Spandana, I can check nosuchelementexcrption and update. I am not using absolute XPath. Absolute XPath starts with /html. I am using relative XPath starting with // everywhere.
@spandanakaru4628
@spandanakaru4628 4 ай бұрын
@@seniorQA 🙏 thank you. When i try to inspect the date on calendar, calendar is closing. Unable to inspect the date and write the xpath
@seniorQA
@seniorQA 4 ай бұрын
@@spandanakaru4628 It is a quick fix. Please find the link to the video: kzbin.info/www/bejne/laObpXWwaa-nlbc Hope it will help!
@djnormus
@djnormus 4 ай бұрын
Hello 👋, thank you for the video, please can you make a video of Assertions and in Browser Library… and more 🎉 Thank you
@seniorQA
@seniorQA 4 ай бұрын
Thanks. Sure.
@seniorQA
@seniorQA 4 ай бұрын
Hi there, Frame handling is here: kzbin.info/www/bejne/m4KmdX19hq5_rtU Assertions: next week for sure! Thanks!
@jnicoulakos
@jnicoulakos 5 ай бұрын
That is a fast way of starting it. Nice job.
@AhmedAMostafa
@AhmedAMostafa 5 ай бұрын
Hi, Thanks for the video, Is the library still maintained? I see that the last version was nearly 3 years ago ..
@seniorQA
@seniorQA 5 ай бұрын
Right, the related Github looks dormant for a while with few pull requests in pipeline. Let's see if we come across any issue. It looks fine till now. We can surely open a thread in Github in case if any issue. Thanks for the comment.
@xrcorreia
@xrcorreia 6 ай бұрын
Gratidão
@jiranav8719
@jiranav8719 6 ай бұрын
I saw your code contain 'Wait Sleep', is this standard library keyword or your custom keyword?
@seniorQA
@seniorQA 6 ай бұрын
Thanks for your comment. Wait Sleep is a custom keyword using hard sleep.
@makarandethape1311
@makarandethape1311 6 ай бұрын
What are its adavantages and disadvantages over Sikuli ?
@seniorQA
@seniorQA 6 ай бұрын
Thanks for your comment. In this video I was only able to talk about the quick setup advantage of ImageHorizonLibrary over Sikuli. Surely, as I explore it more I will be able to talk more about it in the next sessions. Recently while facing issues with Sikuli Library in Robot Framework I searched online and stumbled upon this place where I got to know about ImageHorizonLibrary - forum.robotframework.org/t/sikuli-library-throwing-error-in-robotframework/851/2
@gtechnstuff
@gtechnstuff 7 ай бұрын
Can we pass the variables from here but link the actual values to an excel with little modification to this format?
@whenthisrainstops5355
@whenthisrainstops5355 7 ай бұрын
Thank you SO MUCH!!!!!!!!!
@mikemihay
@mikemihay 7 ай бұрын
Thank you for the video!
@genem2452
@genem2452 8 ай бұрын
"Promosm"
@wadiejeljli5646
@wadiejeljli5646 8 ай бұрын
how to replace admin1 or admin12 by ${admin1} or ${admin12} returned by keywords from resource file
@seniorQA
@seniorQA 6 ай бұрын
Hi, thanks for the question, we can use [Arguments] to pass data from resource file. You can refer to other session. Link here: kzbin.info/www/bejne/pZanhah-maeHnrs
@rajimanokaran4348
@rajimanokaran4348 8 ай бұрын
Can you share your mail id
@siddharthjadhav2030
@siddharthjadhav2030 8 ай бұрын
You save my lots of time
@siddharthjadhav2030
@siddharthjadhav2030 8 ай бұрын
Best man
@pl_777
@pl_777 9 ай бұрын
Great
@WhiteKnight_OG
@WhiteKnight_OG 9 ай бұрын
after installing this Natural Software , its not installed in Eclipse Marketplace , and its not identifying keyword in feature file.
@sabanamondal5829
@sabanamondal5829 7 ай бұрын
Same for me also
@WhiteKnight_OG
@WhiteKnight_OG 7 ай бұрын
@@sabanamondal5829 download from Google I guess that will work for you...
@Himu421
@Himu421 10 ай бұрын
Hi Can we have multiple Test template for different scenario test cases. I'm reading data from Excel sheet currently at my work but when there's different steps then my script failing. Please let me know if there's' other alternative. I'm using Pycharm IDE with DataDriver and Selenium Library
@seniorQA
@seniorQA 9 ай бұрын
Thanks for sharing the specific issue.Sorry for the delay. Yes, in Robot Framework, you can have multiple test templates for different scenario test cases. Test templates define the structure of test cases by specifying the names and orders of their arguments. This allows you to reuse the same test case structure with different arguments. I will try to post a session if possible.
@VedantKulkarni-d5u
@VedantKulkarni-d5u 10 ай бұрын
My eclipse marketplace is not working, what should I do now
@seniorQA
@seniorQA 9 ай бұрын
Hi, follow this video to install using "Install New Software" option in Help tab. No need of Eclipse Marketplace.