Questions tagged [python-appium]

Appium Python Client. An extension library for adding Selenium 3.0 draft and Mobile JSON Wire Protocol Specification draft functionality to the Python language bindings, for use with the mobile testing framework Appium.

Appium Python Client.

An extension library for adding Selenium 3.0 draft and Mobile JSON Wire Protocol Specification draft functionality to the Python language bindings, for use with the mobile testing framework Appium.

https://github.com/appium/python-client

295 questions
0
votes
0 answers

Appium/Android Help getting find element to work

I am new to using Selenium with Appium for mobile testing. We have used selenium web driver to automate our website and looking to move towards automation of the mobile app. I am hoping I could reach out for a few quick pointers. I am not able to…
0
votes
1 answer

How to select "OK" Button from Android Keyboard in Appium

I am trying to click on "Ok" Button i.e. tick mark in Android device, but its happening, since keypad has not any xpath value. Can someone please help me on this?
TeSter
  • 119
  • 1
  • 11
0
votes
1 answer

How to deal with occasional alert message in selenium/Appium in Python

I am doing automation and making my code dynamic, in that way either element found or not, app should run smoothly and flawlessly. Right now, problem is there is an alert message which appears occasionally. let us say its A. It appears some time and…
TeSter
  • 119
  • 1
  • 11
0
votes
2 answers

Appium python : multiple click

I got a quesition for you, On my application, i would like to click multiple time (10) on a button. But the application doesn't accept the tap option, so the following code doesnt work : multi_click = TouchAction(self.driver) …
Flo-se
  • 3
  • 3
0
votes
1 answer

How to find and click or tap on user icon on navigation bar using appium webdriver?

I want to click on element shown in picture (purple circle with M letter in center of it) using selenium webdriver. Element is located on navigation bar. I tried to find element using Appium Desktop, but unsuccessfully. My code executes everything…
0
votes
1 answer

UIautomatorviewer cannot create UI xml hierarchy for default calling app in samsung S6 on android 7

I need xpath of dial button,answer button, reject call button and so on but UIautomatorviewer doesnt create UI xml hierarchy for default calling app in samsung S6. Is there any other way to get these UI elements? Uiautomatorviewer works fine on HTC…
renuka
  • 160
  • 1
  • 2
  • 15
0
votes
1 answer

element.set_value not working in python appium for fill the application form

I am trying to fill the data like name, email, and other details on android app using python appium client getting below error. Appium server version -1.4.16.1 python appium client = 0.22 and 0.24 getting below error not getting ant resolution. …
0
votes
2 answers

Power on/off using Appium commands

I am trying to Power on/off a device using appium. I modified Webdriver.py in Appium python client. I added a function and command for power off. Its not working. Can anyone help me with Appium commands for power on/off. PS - I can not use adb…
0
votes
1 answer

How do I include the setup method in python-appium base page?

I am just a beginner when it comes to python or coding in general. I'm trying to setup an automation framework using python-appium and the page object model. My question is, How do I include the setup method into my base page? When I call the…
0
votes
1 answer

Airplane mode On status is Always True

I am Using adb command to get the status of airlane_mode_on in appium using python. But its always returning 'True' even when it is off. Below is the code snippet. def getGlobalSettingsOperation(self): …
jad
  • 493
  • 3
  • 16
0
votes
0 answers

Appium - Reduce Screenshot Time

I have just started learning Appium to Automate Android ans iOS applications. I am using Python with OpenCV for image recognition to automate an App made with Unity. But taking screenshots consume a big amount of time. Is there a way to reduce this…
0
votes
0 answers

not able to click on button after the pop-up appears in appium

I have used appium 1.6.4 and android version is on 5.1 ,6.1 and 7.0 Below is my code public boolean navigateToLoginPage(){ String strng = null; newObj = new LogInPage(); wait = new WebDriverWait(driver,20); …
abishek kachroo
  • 35
  • 1
  • 11
0
votes
3 answers

How to scroll the page in Appium + Python

I create tests using Appium+Python to test IOs app. I want to scroll the page. Here is the code def scroll_page(self): action = TouchAction(self) action.press(BrowsePageElements.firs_element_to_scroll(self)). …
0
votes
1 answer

How to update appium 1.1.0 beta

I need to update the latest version of the appium, alas, in the Russian forums there is not much information for it. I have a 1.1.0 beta
0
votes
1 answer

APPIUM, how to get x and y coordinates for swiping

In the Appium documentation, it says that i have to pass in an x and y value. How can I know the x and y value of a section i want to to swipe left or right on. I am using uiautomationviewer (Android), do I need any tools? driver.swipe(start_x=75,…
edmamerto
  • 7,605
  • 11
  • 42
  • 66