QA Automation Introduction and Demo
1:45:01
Пікірлер
@alaamansour6088
@alaamansour6088 Күн бұрын
finally i solved this problem since most of videos are old version of Chrome , greetings from Palestine !
@SuperSQA
@SuperSQA 14 сағат бұрын
I am glad it helped. Thanks for the update.
@AdianRodriguez
@AdianRodriguez 2 күн бұрын
hello, do you know how to configure mariadb in mamp?
@SuperSQA
@SuperSQA 14 сағат бұрын
Hi @AdianRodriguez, MAMP does not come with MariaDB only MySQL. If you like to use MariaDB you can install XAMPP instead of MAMP. XAMPP works almost the same way but it uses MariaDB. I hope that helps.
@tanvirkaurrajpal6050
@tanvirkaurrajpal6050 4 күн бұрын
I used git pull. Followed all the instructions. On command prompt, it is showing that the folder is added, but the new folder is not showing in my local or on my github. Can you tell me what to do?
@SuperSQA
@SuperSQA 14 сағат бұрын
`git pull` is used once you already have a git repository cloned (created) on local and to pull changes from the remote to the local. If you are trying to create the local repo from the remote repo for the first time you need to do `git clone`. That will create a clone of the remote repository on your local driver. I think you missed parts of the video. If you re-watch the video from start what I just explained will be clear. Thanks.
@dealplusstore945
@dealplusstore945 11 күн бұрын
Thank you so much very helpful!
@SuperSQA
@SuperSQA 7 күн бұрын
Glad it helped!
@VulpesRokanten
@VulpesRokanten 20 күн бұрын
Большущее спасибо!!! Пытался поставить прямо на ВМ testlink, то стили не подгружались, то сыпал кучу ошибок по php, зашел на этот туториал - всё встало. Правда пара моментов: 1. Может я не заметил, но надо было прям зайти в бд и высавить root пароль к после создания, а то access denied показывал docker exec -it testlink-code_mysql_testlink_1 mysql -u root -p 2. Способ с изменением end_exec_ts в таблице не помог, а вот второй уже помог. Огроменнейшая благодарность.
@sykoz371
@sykoz371 25 күн бұрын
Hey, How do I remove that "Chrome for Testing v123.0..... is only for automated testing. For regular......." bar when the browser is opened? I used chrome_options.add_experimental_option("excludeSwitches", ["enable-automation"]) chrome_options.add_experimental_option('useAutomationExtension', False) and the "Chrome is being controlled by automated test software" infobar was removed, but the other one, I just didnt find any way to remove it
@SuperSQA
@SuperSQA 16 күн бұрын
@sykoz371 I researched this and I am not able to find any way remove it. I do not think it is possible to do so. Unless you want to use some work around by using Javascript and hide the element. I dont think that would make much sense tho.
@utkarshkatiyar123
@utkarshkatiyar123 Ай бұрын
If my script is designed to run mutiple times, will the data that I scrape be from the same opened window or every time there will be a new window opened which does not close?
@SuperSQA
@SuperSQA Ай бұрын
@utkarshkatiyar123 that will depend on how your script is written. A new browser will open everytime `webdriver.Chrome()` (or whatever browser) line is hit. So if the script is running multiple times then multiple browsers will open.
@utkarshkatiyar123
@utkarshkatiyar123 Ай бұрын
@@SuperSQA thanks for the insight. I was wondering if there was a way to work in the current window only? I don't want to keep opening a new window as it will save me the page load time.
@ceebot4700
@ceebot4700 Ай бұрын
Спасибо большое! Для работы понадобился Testlink, очень помогло видео
@SuperSQA
@SuperSQA Ай бұрын
Google Translate helped :) You are very welcome. I am glad the video helped.
@studystudystudy
@studystudystudy Ай бұрын
This really helped a lot! Thanks, I ended up going with the Options.
@SuperSQA
@SuperSQA Ай бұрын
@studystudystudy I am glad it helped. Using the Options is a good option one reason being so you don't have to remember to take out the breakpoint. Thanks for the feedback. Keep on studying !!! :)
@zinebibarkii6853
@zinebibarkii6853 Ай бұрын
can you help me exercice since i have never been developping and coding
@SuperSQA
@SuperSQA Ай бұрын
@zinebibarkii6853 that exactly why I created my courses. To give people opportunity to exercises. Please checkout the courses and see if they are the right fit for you. Plenty of exercises in the course.
@MrIndian321
@MrIndian321 Ай бұрын
Well explained
@SuperSQA
@SuperSQA Ай бұрын
Thank you so much for the feedback @MrIndian321
@Drayblaq711
@Drayblaq711 Ай бұрын
Thanks alot ❤ well understood
@SuperSQA
@SuperSQA Ай бұрын
Awesome. I am glad you were able to learn from it. And you are welcome @Drayblaq711
@danbrendel6762
@danbrendel6762 Ай бұрын
I get the following error, any ideas? "SessionNotCreatedException: Message: session not created: Failed to create Chrome process."
@SuperSQA
@SuperSQA Ай бұрын
That is a very generic error. Usually from version incompatibility. Since new version of Chrome was just released yesterday I think maybe Selenium did not download the correct version of chromedriver. Try to manually download chromedriver that match your Chrome version and if that wokrked then we know the issue.
@cynthiarodriguez4850
@cynthiarodriguez4850 Ай бұрын
An explain very clear!!! Thank you so much!! You're awesome :)
@SuperSQA
@SuperSQA Ай бұрын
Your comments means a lot to me. Thank you. I am glad you enjoyed the video.
@andreasmotzkus6181
@andreasmotzkus6181 2 ай бұрын
THX a lot !!!!!! You made my day !!!!! Works like a charm.....
@SuperSQA
@SuperSQA 2 ай бұрын
You are very welcome! Happy to hear that.
@marouaellouze2787
@marouaellouze2787 2 ай бұрын
Thks it's so helpful, but I got this failure when trying to continue installation via GUI - Checking if /var/www/html/gui/templates_c directory is writable (by user used to run webserver process) FAILED - Checking if /var/testlink/logs/ directory is writable (by user used to run webserver process) FAILED
@SuperSQA
@SuperSQA 2 ай бұрын
That issue is also covered in the video. You have to make the folders writeable by the user. Please re-watch the first few minutes of the video to solve the issue.
@jeetcool5541
@jeetcool5541 2 ай бұрын
Thank you for this. I am having trouble opening "my settings" inside testlink, want to create users. Please suggest
@anonym_user_nksnskdnkdnksndkn
@anonym_user_nksnskdnkdnksndkn 2 ай бұрын
thank you, been trying that for too long
@SuperSQA
@SuperSQA 2 ай бұрын
You are welcome. I am glad it helped.
@nouhlaib6735
@nouhlaib6735 2 ай бұрын
Thank you 👏👏
@SuperSQA
@SuperSQA 2 ай бұрын
You're welcome 😊
@ABo-vf2oi
@ABo-vf2oi 2 ай бұрын
super. I liked the way you explained it with real examples. i didn't know how to use SQL in testing, now I have some ideas. Waiting for more tutorial videos and best of luck
@SuperSQA
@SuperSQA 2 ай бұрын
Glad it was helpful! Thank you. Working on it :)
@nouhlaib6735
@nouhlaib6735 2 ай бұрын
😫😫The browser running for a few seconds and then stops. What's the solution?
@SuperSQA
@SuperSQA 2 ай бұрын
Do you have more code and it is failing before it even runs any of it or it is closing at the end? If it is closing at the end then you can just put a breakpoint. I created this video specifically to handle case when it closes at the end. I hope you find this helpful: kzbin.info/www/bejne/pXPaYaWMoL-irdU
@SuperSQA
@SuperSQA 2 ай бұрын
🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle 📚 Live training with a mentor: supersqa.com/bootcamp
@chiragprajapati9316
@chiragprajapati9316 3 ай бұрын
awesome video! This video helped me to set up Testlink successfully. Thanks go ahead
@SuperSQA
@SuperSQA 2 ай бұрын
Awesome I am glad it helped.
@Minakshi-u9q
@Minakshi-u9q 3 ай бұрын
Thanks! It helped.
@SuperSQA
@SuperSQA 2 ай бұрын
You are welcome. I am glad it helped.
@mathanbabu7863
@mathanbabu7863 3 ай бұрын
Hii! Please make a video for the integration with bugzilla 😢. My problem is when I tried to add the existing bug with testlink, it throw an connection error😑. Please help me🥺
@SuperSQA
@SuperSQA 2 ай бұрын
Have you looked at the logs? May be if you post the actual exception here I can try to figure out what is wrong.
@crissatrapi3933
@crissatrapi3933 3 ай бұрын
I don't understand why I don't have the Requirement Specification menu at the left, I tried adding something on the config file, I searched on the internet but I still don'"'t have it. :(
@yasarshaikh913
@yasarshaikh913 3 ай бұрын
Can I connect SQL without workbench
@SuperSQA
@SuperSQA 3 ай бұрын
Yes MySQL WorkBench is just one of the available clients. It is the most popular one. But you can search for 'mysql client' and use whatever you like.
@nadimtohme8525
@nadimtohme8525 3 ай бұрын
What does [DEV] mean next to the version number 1.9.20?
@paulawilliams4443
@paulawilliams4443 3 ай бұрын
Hi Admas! I am one of Jennis students (RoadtoQA) I am trying to complete the project and download MAMP. I have a Lenovo chromebook, and when I tried running the file it says that it's not compatible with my device. Is there another way to download this? I chatgpt the instructions but didn't get far. Thank you so much!!!
@SuperSQA
@SuperSQA 3 ай бұрын
I am assuming the downloaded version is not the correct version that matches your version of operating system. My suggestion is to start from scratch and download again paying more attention to the version. Feel free to send me an email with screenshots if you have other questions [email protected]
@SuperSQA
@SuperSQA 3 ай бұрын
📚 Live training with a mentor: supersqa.com/bootcamp 🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle"
@SuperSQA
@SuperSQA 3 ай бұрын
📚 Live training with a mentor: supersqa.com/bootcamp 🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle"
@SuperSQA
@SuperSQA 3 ай бұрын
📚 Live training with a mentor: supersqa.com/bootcamp 🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle
@francoisdekoker239
@francoisdekoker239 3 ай бұрын
Do you answer questions here i am taking your course on udemy it is free so cannot ask questions there
@SuperSQA
@SuperSQA 3 ай бұрын
@francoisdekoker239 You can email me questions at [email protected]
@philbarnett6045
@philbarnett6045 3 ай бұрын
Great instructional video, thank you very much!
@SuperSQA
@SuperSQA 3 ай бұрын
You are very welcome. I am glad you liked it.
@sscaspirant7784
@sscaspirant7784 3 ай бұрын
HOW TO RUN CHROME EXTENSION IN HEADLESS MODE
@TheIntrovertsDebrief-lq4hg
@TheIntrovertsDebrief-lq4hg 3 ай бұрын
I did the exact same but I get an error
@SuperSQA
@SuperSQA 3 ай бұрын
What is the error you are getting? At what step?
@TheIntrovertsDebrief-lq4hg
@TheIntrovertsDebrief-lq4hg 4 ай бұрын
Finally someone that uses a Mac! I am now going to watch this
@SuperSQA
@SuperSQA 4 ай бұрын
📚 Live training with a mentor: supersqa.com/bootcamp 🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle
@paulorobertoperondi3364
@paulorobertoperondi3364 4 ай бұрын
Muito obrigado. Funcionou muito bem! Quando do erro do script de criação das tabelas, a tua alteração não surte efeito pois deveria alterar o script dentro do container, que é o que a aplicação está usando; Ou dar um rebuild depois de alterar. Mas na verdade, eu simplesmente voltei para a página anterior e tentei criar a base novamente, sem alterar nada e funcionou!.
@viniciusandrade2136
@viniciusandrade2136 2 ай бұрын
Paulo, tudo bem? Você chegou a conseguir gerar gráficos com essa imagem?
@SuperSQA
@SuperSQA 4 ай бұрын
🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle 📚 Live Bootcamp with a mentor: supersqa.com/bootcamp
@SuperSQA
@SuperSQA 4 ай бұрын
🎁 Amazing QA Automation Learning Opportunity: www.supersqa.com/qa-automation-training-bundle 📚 Live training with a mentor: supersqa.com/bootcamp
@nunyab5955
@nunyab5955 5 ай бұрын
Im getting an error message world zip is not utf-8 encoded - im using windows
@SuperSQA
@SuperSQA 5 ай бұрын
I am not sure why that is happening because I tried it on Windows and I am not facing any issue. I recommend re-downloading from the original source and try again. If that does not work also try to unzip using a different tool. Here is the source: dev.mysql.com/doc/world-setup/en/
@midpurple
@midpurple 4 ай бұрын
Try Right clicking on the zip file and open it in a new window. Right click on the folder, select open, then right click on the file and select open. It should then appear on the MySQL page.
@BrijetaGhevariya
@BrijetaGhevariya 5 ай бұрын
PS C:\Users\hardi\Desktop\python\example> export PYTHONPATH=/Users/hardi/Desktop/python/example/day1 export : The term 'export' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + export PYTHONPATH=/Users/hardi/Desktop/python/example/day1 + ~~~~~~ + CategoryInfo : ObjectNotFound: (export:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException I did the same thing but I don't know why it is giving me an error.
@SuperSQA
@SuperSQA 5 ай бұрын
The actual error is "The term 'export' is not recognized" and that is because the 'export' command does not exist on Windows. If you are using CMD the command to environment variables is 'set'. So you would do 'set PYTHONPATH=C:\...' If you are using PowerShell the commend to set environment variables is '$env:VAR_NAME'. So you would do $env:PYTHONPATH = "C\..." The thing you want to research is 'how do I set environment variable in CMD/PowerShell/Bash...'. I hope this helps.
@vidhuluthra7919
@vidhuluthra7919 5 ай бұрын
YAY
@veydantbruh
@veydantbruh 5 ай бұрын
great tutorial mate cheers to you!!
@SuperSQA
@SuperSQA 5 ай бұрын
Thank you! Cheers!
@gauravm9675
@gauravm9675 5 ай бұрын
Last command is not working in build script I'm using ec2 instance amazon linux
@SuperSQA
@SuperSQA 5 ай бұрын
when you say 'not working' please explain what the error is. what does 'not working mean'? And also what is the command that is not working? I am happy to help but you should provide more info.
@gauravm9675
@gauravm9675 5 ай бұрын
@@SuperSQA i resolved it, thankyou
@gauravm9675
@gauravm9675 4 ай бұрын
Hello Can we integrate testlink with gitlab??
@yasarshaikh913
@yasarshaikh913 3 ай бұрын
Can I connect SQL without workbench​@@SuperSQA
@rodrigoec1028
@rodrigoec1028 5 ай бұрын
Hi! You just saved my life, thank you <3
@SuperSQA
@SuperSQA 5 ай бұрын
You're welcome!
@RenatoGuedes
@RenatoGuedes 5 ай бұрын
When I execute the file to open the browser, it opens and after it finishes loading the page it automatically closes the browser. Do you know why and what I can do? Thanks!
@SuperSQA
@SuperSQA 5 ай бұрын
@RenatoGuedes, that has been behavior of chrome for over a year now. Once the script ends it just closes the browser even if you do not have a .quit() or .close(). There are several ways to deal with this but the way I deal with it is I just put a breakpoint at the end of the script so the browser stays open.
@RenatoGuedes
@RenatoGuedes 5 ай бұрын
@@SuperSQA thanks
@SuperSQA
@SuperSQA 5 ай бұрын
📦 Bundle Courses: www.supersqa.com/qa-automation-training-bundle 🎁 Live Bootcamp for QA Automation: www.supersqa.com/bootcamp 🏠 Home Page: www.supersqa.com
@SuperSQA
@SuperSQA 5 ай бұрын
📦 Bundle Courses: www.supersqa.com/qa-automation-training-bundle 🎁 Live Bootcamp for QA Automation: www.supersqa.com/bootcamp 🏠 Home Page: www.supersqa.com