Hi @max,
You should create two drivers (an Appium driver and a Selenium driver) and then you could interact with them simultaneously. For example, to work with a local Appium server and a local Chrome, in python:
from appium.webdriver.webdriver import WebDriver as AppiumDriver
from selenium.webdriver.chrome.webdriver import WebDriver as ChromeDriver
appium_capabilities = {
'automationName': 'Appium',
'platformName': 'Android',
'deviceName': 'Android',
'app': 'APK_PATH'
}
appium_driver = AppiumDriver(command_executor='http://127.0.0.1:4723/wd/hub',
desired_capabilities=appium_capabilities)
chrome_driver = ChromeDriver(executable_path='CHROMEDRIVER_PATH')
chrome_driver.get('http://www.google.com')
appium_driver.find_element(...)
chrome_driver.find_element(...)
appium_driver.quit()
chrome_driver.quit()