Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

run a based selenium script from my web hosting

I have a python script generated from selenium, it works fine on my localhost.

Now I want to run it from my web hosting, I already checked that my web hosting support python.

If not possible, is there an alternative solution for selenium?

# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re

class HellowWorld(unittest.TestCase):
def setUp(self):
    self.driver = webdriver.Firefox()
    self.driver.implicitly_wait(30)
    self.base_url = "https://www.google.com/"
    self.verificationErrors = []
    self.accept_next_alert = True

def test_hellow_world(self):
    driver = self.driver
    driver.get(self.base_url + "/")
    driver.find_element_by_id("lst-ib").clear()
    driver.find_element_by_id("lst-ib").send_keys("hello world")

def is_element_present(self, how, what):
    try: self.driver.find_element(by=how, value=what)
    except NoSuchElementException as e: return False
    return True

def is_alert_present(self):
    try: self.driver.switch_to_alert()
    except NoAlertPresentException as e: return False
    return True

def close_alert_and_get_its_text(self):
    try:
        alert = self.driver.switch_to_alert()
        alert_text = alert.text
        if self.accept_next_alert:
            alert.accept()
        else:
            alert.dismiss()
        return alert_text
    finally: self.accept_next_alert = True

def tearDown(self):
    self.driver.quit()
    self.assertEqual([], self.verificationErrors)

 if __name__ == "__main__":
unittest.main()
like image 482
mehdi Avatar asked Oct 20 '16 22:10

mehdi


1 Answers

I found a good alternative based on google's puppeteer library. All information that do you need is in this web page pypeteer

You can install it using: pip install pyppeteer

Here an example of code to take a screenshoot:

import asyncio
from pyppeteer import launch

async def main():
 browser = await launch()
 page = await browser.newPage()
 await page.goto('https://example.com')
 await page.screenshot({'path': 'example.png'})
 await browser.close()

asyncio.get_event_loop().run_until_complete(main())
like image 126
Marcos Randulfe Garrido Avatar answered Oct 19 '22 14:10

Marcos Randulfe Garrido