1
私は、appium seleniumを使用して自動化テストを行っています。誰でもモバイルドライバの現在のURLを見つけるのを手伝ってもらえますか? driver.getCurrentUrl()で試してみました。それは動作していませんappiumでモバイルテストの現在のURLを見つける方法
私は、appium seleniumを使用して自動化テストを行っています。誰でもモバイルドライバの現在のURLを見つけるのを手伝ってもらえますか? driver.getCurrentUrl()で試してみました。それは動作していませんappiumでモバイルテストの現在のURLを見つける方法
You need to check the context of the app :
If context is native app , you cant get url of any screen.
If App context is having WEBVIEW you will get URL
How to check context :
Set<String> contextNames = driver.getContextHandles();
for (String contextName : contextNames) {
System.out.println(contextNames);
}
You can switch to WEBVIEW using following code :
if (contextName.contains("WEBVIEW")) {
driver.context("WEBVIEW");
driver.getCurrentUrl()
}
私はそれを試してみましょう&あなたを知らせる – Vijay