Is there a way to test web app in mobile?

I have the following codes that runs perfectly in Desktop
WebUI.openBrowser(‘Altoro Mutual’)
height = WebUI.getPageHeight()
//Login Attempt using wrong Credentials
//1st Attempt
WebUI.setText(findTestObject(‘Test Repository/Username’), “Test1”)
WebUI.setText(findTestObject(‘Test Repository/Password’), “Password”)
WebUI.click(findTestObject(‘Test Repository/login’))
WebUI.verifyTextPresent(“Login Failed: We’re sorry, but this username or password was not found in our system. Please try again.”, false)

But is it possible to run this one using the Run>Android option? if yes how?