android 如何在使用Appium和RubyGems时从NativeApp切换到WebView

rta7y2nd  于 2023-06-20  发布在  Android
关注(0)|答案(1)|浏览(130)

我正在用selenium、appium和RubyGems测试一个Android混合应用程序。当我尝试使用

  1. element = driver.find_element(:id => "image0")
  2. element.click

我收到一个错误,说它找不到对象。然后我了解到我需要从Native App切换到WebView。尝试切换到Webview时

  1. driver.switch_to.window("WEBVIEW")

我收到一条错误消息,显示“...尚未实现...”
那么,我如何切换到Web,这样我就可以点击webelement,然后使用RubyGems切换回Native_App?
添加...当我尝试driver.switch_to.context(“WebView”)时,我收到错误undefined method `context' for #(NoMethodError)
你知道为什么我会收到上下文错误吗?

  1. require 'rubygems'
  2. require 'selenium-webdriver'
  3. require 'uri'
  4. require 'appium_lib'
  5. require_relative 'SDK_Navigation'
  6. mySampleApp = SampleApp.new
  7. myNavigation = Navigation.new
  8. myProducts = Products.new
  9. myProductEditor = ProductEditor.new
  10. caps = Selenium::WebDriver::Remote::Capabilities.android
  11. caps['deviceName'] = 'fegero'
  12. caps['platformName'] = 'Android'
  13. caps['app'] = 'C:\Users\ScottFeger\Downloads\SampleApp_1105.apk'
  14. driver = Selenium::WebDriver.for(
  15. :remote,
  16. :url => "http://127.0.0.1:4723/wd/hub",
  17. :desired_capabilities => caps)
  18. mySampleApp.PickImagebtn(driver)
  19. mySampleApp.SelectAlbum(driver, "All Photos")
  20. mySampleApp.SelectImage(driver,"bob")
  21. myNavigation.SelectParent(driver, "Home & Office")
  22. myNavigation.SelectChild(driver, "Home Decor")
  23. myProducts.SelectProduct(driver,"Coasters")
  24. myProductEditor.AddPhoto(driver)
  25. #================================================================
  26. #WEBVIEW - Where my problem begins
  27. #driver.execute_script 'mobile: tap', x: 150 , y: 300 // WORKS
  28. driver.available_context
  29. driver.switch_to.context("WebView")
  30. #Click on an image
  31. element = driver.find_element(:id => "image0")
  32. element.click
tgabmvqs

tgabmvqs1#

而不是你的块:

  1. driver.available_context
  2. driver.switch_to.context("WebView")

可能正确的方法是docs建议的:

  1. Given(/^I switch to webview$/) do
  2. webview = @driver.contexts.last
  3. @driver.switch_to.context(webview)
  4. end

另外,请确保在尝试访问webview上的任何元素之前切换到webview,并在尝试访问webview中的元素之前切换出webview。

  1. Given(/^I switch out of webview$/) do
  2. @driver.switch_to.context(@driver.contexts.first)
  3. end
展开查看全部

相关问题