915 questions
Score of 0
0 answers
126 views
Can't build / test WebDriverAgentRunner on my IOS
I'm trying to run WDA on my iPhone but I'm getting
Cannot test target “WebDriverAgentRunner” on “iPhone”: Logic Testing Unavailable Logic Testing on iOS devices is not supported. You can run logic ...
Score of 0
1 answer
96 views
Appium inspector not displaying app loaded in ios Simulator
I'm constructing an mobile automation frame using appium with webdriverIO. My employer is in the early stages of constructing their app so I'm using a boilplate WDIO app as it's a hybrid app.
I'm ...
Score of 0
0 answers
41 views
Visual Touch Feedback is IOS Screen recording with LambdaTest and Appium Automation
I am trying to run an automation in IOS using LambdaTest with Appium using my Node js server, here I am getting screen recording after the automation has completed, but here the recording doesn't show ...
Score of 0
1 answer
122 views
Appium action chain fails to click button
So I was trying to using appium to click something and move somewhere else to do another click. This is my code.
actions = ActionChains(driver)
actions.w3c_actions = ActionBuilder(driver, ...
Score of 0
2 answers
61 views
Not able to scroll through iOS application using touchAction
I am trying to scroll in iOS simulator application, using touchAction as below.
def scroll_by_touch_action(self, startX, startY, endX, endY):
actions = TouchAction(self.driver)
actions.press(x=...
Score of 1
1 answer
87 views
While trying a basic scenario to launch App in IOS real device using Appium with java. Getting below error:
Exception in thread "main" org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure....
Score of 0
1 answer
297 views
InvalidArgumentException thrown with msg: The XCUITest driver only supports W3C actions execution in the native context
Gurus;
I am running the a MobileWeb test on Android and iOS one after another.
With Android, the default context is 'CHROMIUM' and it is running the entire test just fine whether I shifted to '...
Score of 0
1 answer
79 views
C# App doesn't start up when running Appium WDA on iOS
We are using Appium to test our multi-platform app. (Windows, Android, iOS). This App is written using C# in .Net 8 with MVVMCross.
However, since about month or 2 ago, our App crashes on start up on ...
Score of 2
0 answers
95 views
Flutter App Crashing on iOS with Appium Due to Deallocation Error : -[FlutterPlatformViewSemanticsContainer retain]: message sent to deallocated
I am using Appium for automation testing of our Flutter app. The tests are running fine on Android, but when running the same scripts on iOS, the application crashes, and we receive the following ...
Score of 0
1 answer
202 views
In Appium inspector, FOr IOS App - not able to inspect "Hamburger menu options"
In Appium inspector, For IOS App - not able to inspect/not recognized
"Hamburger menu options". When I tried to inspect the element I see background screen elements ID's but not from the ...
Score of 0
1 answer
452 views
accessibilityIdentifier not working the same starting with iOS 15
The app on which I am working has it's ui tested using Appium. Because of this, I set accessibility identifiers on views.
struct RootView: View {
var body: some View {
VStack {
...
Score of -1
2 answers
948 views
Getting Unable to connect to "http://localhost:4723/wd/hub" error with node 18 when run against mobile Apps
I have webdriverio + cucumberjs based tests and When using node 18, I,m getting error - http://localhost:4723/wd/hub
Setup:
node v18.20.3 (npm v10.7.0)
[email protected]
[email protected]
I am able to run ...
Score of 2
0 answers
689 views
Appium element.getText() returns element's accessibilityLabel instead of displayed text on iOS (Flutter App)
The background about my issue , the mobile app i'm testing build using Flutter. I'm using Appium xcuitest driver with webdriver.io and Typescript for the mobile test automation. I have added semantic ...
Score of 1
0 answers
623 views
Appium accessibility id's different on android
I am trying to add testID's to my component so automated tests can be run.
I am adding the testId's like below. I have added some screenshots of the appium inspector, id for iOS and accessibility id ...
Score of 0
1 answer
609 views
TypeError: Unexpected keyword argument 'desired_capabilities' APPIUM
I'm new to Appium automation in Python, this is my first project actually.
I don't use selenium in this project.
This is my code:
`from appium import webdriver
from os import path
CUR_DIR = path....