Тёмный
Cope Automation
Cope Automation
Cope Automation
Подписаться
Coping up with growing technologies is becoming challenging nowadays. This channel aims to provide solutions, how to guides, and tutorials across different technologies in Test Automation and process automation space.
Cypress Web Table Interactions - Part 9
24:38
4 года назад
Комментарии
@KRISHINNOVOO
@KRISHINNOVOO 14 дней назад
Hi bro could you please make a video on setting up and running both the Appium server and a Python automation script on the same Android device? I Mean... In Same Android testing (Appium server and python script execution) have to run in background In the same Android mobile Automation work also have to run Is it possible...? If it is possible make video on it...
@roshanp.thomas1768
@roshanp.thomas1768 20 дней назад
Hi,What will be the changes in the script if application is already installed from the play store
@automateboringstuffwithraj
@automateboringstuffwithraj Месяц назад
Make a new video on to scrape product details (atleast first 20 products) from Amazon app
@SmartkiddoLearnings-vu1wy
@SmartkiddoLearnings-vu1wy 3 месяца назад
How can we get lateat appium turorial this is almost 5yrs olds tutorial will it work today as we'll
@sarthakmahapatra9002
@sarthakmahapatra9002 4 месяца назад
You are awesome
@oumaimaazennoud1675
@oumaimaazennoud1675 5 месяцев назад
Hey yall, if you get the error: capabilities = options.to_capabilities() AttributeError: 'NoneType' object has no attribute 'to_capabilities' Then run the following code: from appium.options.android import UiAutomator2Options from appium import webdriver desired_cap={ "appium:deviceName": "xxxxyourDeviceNamexxxxx", "platformName": "Android", "appium:app": "xxxxyourPathxxxxxx" } options = UiAutomator2Options().load_capabilities(desired_cap) driver = webdriver.Remote("localhost:4723/wd/hub", options=options)
@seruvalingamvs8698
@seruvalingamvs8698 5 месяцев назад
Informative and unique one. Please do more videos in cypress
@abiprakash21m
@abiprakash21m 5 месяцев назад
what the difference between using ID and Xpath elements?
@Pingsmingu
@Pingsmingu 6 месяцев назад
Can you please leave the previous code as is. Don’t overwrite
@funsizedshenell
@funsizedshenell 6 месяцев назад
Great, super helpful content. Thanks for sharing.
@veronicaeletronicaoficial
@veronicaeletronicaoficial 7 месяцев назад
pls hability the automatic subtitles!!!
@ticosnet
@ticosnet 7 месяцев назад
Thanks for sharing!
@neelasatya9350
@neelasatya9350 7 месяцев назад
with using appium can we automate desktop application?
@shakeelriaz5191
@shakeelriaz5191 8 месяцев назад
when I run this command, adb shell "dumpsys window windows | grep -E 'mCurrentFocus'". It gives me nothing. not activity name nor error but when I ran adb devices, one emulator device appeared in the cmd command.
@shakeelriaz5191
@shakeelriaz5191 8 месяцев назад
HAXM is not installed error appeard when I set the emulator. When I clicked on the install button, alert appeared that HAXM is installed but when I again setup the emulator, again error appeared the "HAXM is not installed".
@ahammadnasir8318
@ahammadnasir8318 9 месяцев назад
Can you please upload the video of assignment 2
@AbhimanyuKumar-qg6dj
@AbhimanyuKumar-qg6dj 9 месяцев назад
Hi Sir, Do I have to use Eclipse along with Appium and Python?
@markdillon9588
@markdillon9588 9 месяцев назад
Eclipse is just for java, pycharm for python or visual studio for both
@oscaromarfloressotomayor8476
@oscaromarfloressotomayor8476 9 месяцев назад
Please improve your english
@CharlotteSherriff
@CharlotteSherriff 10 месяцев назад
Appium desktop is no longer supported due to security vulnerabilities, can you add instructions for using it without desktop app?
@shoaibsheikh863
@shoaibsheikh863 11 месяцев назад
Really great.. the way u made understand is really really Praiseworthy
@rafigkhiyavi
@rafigkhiyavi Год назад
Is it possible to use BlueStacks instead of Android Studio for simulation?
@mendietaaa
@mendietaaa Год назад
Hello, I use "multiple true" to delete many elements (in my example, products in Amazon cart) It doesn't remove all elements. Only 2 or 3 and displays the error "CypressError Timed out retrying after 4200ms: cy.click() failed because the page updated while this command was executing. Cypress tried to locate elements based on this query" Can you please help me Thanks
@venkatrayudusidda6746
@venkatrayudusidda6746 Год назад
Bro Thanks a lot bro you have done my day
@sairam-vw4qb
@sairam-vw4qb Год назад
i am getting this error how can i resolve it An unknown server-side error occurred while processing the command. Original error: Could not find 'adb.exe' in ["C:\\path\\to\\your\\sdk\\platform-tools\\adb.exe","C:\\path\\to\\your\\sdk\\emulator\\adb.exe","C:\\path\\to\\your\\sdk\\tools\\adb.exe","C:\\path\\to\\your\\sdk\\tools\\bin\\adb.exe"]. Do you have Android Build Tools installed at 'C:\path\to\your\sdk'?
@GayathriVineeth-zq3go
@GayathriVineeth-zq3go Год назад
scroll not working. TouchAction(driver).press(x=166, y=760).move_to(x=166, y=321).release().perform() What to do
@githinjibonface8486
@githinjibonface8486 Год назад
Indians are God sent. Thanks
@GayathriVineeth-zq3go
@GayathriVineeth-zq3go Год назад
Unable to run code in real device. Message: An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: 'Command '/home/risposta/Android/Sdk/platform-tools/adb -P 5037 -s 1056e1400507 shell 'settings delete global hidden_api_policy_pre_p_apps;settings delete global hidden_api_policy_p_apps;settings delete global hidden_api_policy'' exited with code 255'; Stderr: 'Exception occurred while executing 'delete':
@rajkumaraadepu3951
@rajkumaraadepu3951 Год назад
Hi sir, I am a follower of your courses in udemy. I am learning WebDriverIO-cucumber-typescript tutorials on udemy. I am getting error in tsconfig.json file as "No inputs were found in config file" and you told that it is a "null-array" error But I am unable to fix it. I tried below -- updated typescript version by using npm install typescript --save-dev changed include and exclude as -- "include": ["src/**/*.ts", "test/**/*.ts"], "exclude": ["node_modules", "dist"] But in all the ways I failed...😭 Please suggest me the way how can I fix it. 🙏🙏🙏🙏🙏🙏🙏🙏
@T3TRIZZ
@T3TRIZZ Год назад
I have already installed Android Studio and on editing system variables I can find only platform- and build-tools Can anybody help me with it?
@OmCanpe
@OmCanpe 3 месяца назад
Same issue
@kautech2985
@kautech2985 Год назад
What is this AirDroid?
@MonuSharma-sx1wb
@MonuSharma-sx1wb Год назад
First time I understand each with multiple conditions. THANKS
@krishnahare1435
@krishnahare1435 Год назад
I got error when I write object Javascript executor
@gayatritankar7856
@gayatritankar7856 Год назад
Scroll dynamically for loading page is not working for me got an error as an Exception in the thread "main" java.lang.Error: Unresolved compilation problem: Cannot cast from Object to long
@sainadhreddyp
@sainadhreddyp Год назад
This is not working for android 13 devices.
@lolamerbek
@lolamerbek Год назад
Hi! Plz could anyone help and ask to question - is it for both platforms ? ios and android?
@Java-s24
@Java-s24 Год назад
Brother Can I get your IG, Telegram, WhatsApp because I need to order some scripts and I can pay for it.
@surajpoojari5182
@surajpoojari5182 Год назад
How do i open an existing project I don't have any project to open
@jayjimei8658
@jayjimei8658 Год назад
How to connect with multiple emulators ldplayer when using Appium?
@viacheslavgurov4371
@viacheslavgurov4371 Год назад
Namaste. It is what I expected. I'm in need to clarify. Timecodes will make your session better.
@CarlosCarballo852
@CarlosCarballo852 Год назад
Are you running Appium Inspector and Python Appium script at the same time?
@danithomas_
@danithomas_ Год назад
how to handle the toggle button??
@j.c.l5932
@j.c.l5932 Год назад
How to zoomin and zoomout with the most recent appium library?
@m.oyghan
@m.oyghan Год назад
Hello Instructor, ---------------------------- Update: by watching your video carefully again, I managed to overcome and figure out how to fix that issue in the future. Thank for this tutorial again!! :-) ---------------------------- Thank you for making this video!! I am new to python automation, and while I was creating the project, it failed for not being able to create the virtualenv, due to some permission issue to /home (I am using Ubuntu by the way), I don't know what to circumvent this issue. and as you know /home is the HOME folder to all, not sure why virtualenv would need access to the whole Home directory to create a python project inside Pycharm-Workspace I have dedicated for python projects, which I have gave full access to anything. would you be able to help me on this?
@wagnerpinheiro9301
@wagnerpinheiro9301 Год назад
Hi. Iove yuor explanation is very clearly, especially by showing the javascript editor. I would like to know how to use this on google maps? I've trying but I am not able to apply your explanation on it
@iqbalthalayad
@iqbalthalayad Год назад
can you make a video using flutter app instead of native android app? because i cant see resource id when automating a flutter app. Thanks
@alanalexis7100
@alanalexis7100 Год назад
I have been trying to load the app on iOS but this error keeps showing Unable to launch WebDriverAgent because of xcodebuild failure: xcodebuild failed with code 65 xcodebuild error message:
@AlPerev
@AlPerev Год назад
Пытался понять что говорит автор. Гениталии. Сделай хоть субтитры. полезные вещи говоришь, но нахуй не понятно что он говоришь
@venkateshr8084
@venkateshr8084 Год назад
Hi Bro can you plz upload a video for Parallel execution using Pytest with multiple devices?
@lalithlahari9753
@lalithlahari9753 Год назад
HI Can any one please tell me how to click on edit and update any details dynamically.
@Zaphodikus
@Zaphodikus Год назад
2 issues here - missing the key quality coding points: 1. hard coded sleep instead of waiting for an event 2. hard coded swipe coordinates - why not use the parent control coordinates and calculate the start and end of the swipe to lie just inside the control?