Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/299.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 从我的web主机运行基于selenium的脚本_Python_Selenium - Fatal编程技术网

Python 从我的web主机运行基于selenium的脚本

Python 从我的web主机运行基于selenium的脚本,python,selenium,Python,Selenium,我有一个从selenium生成的python脚本,它在本地主机上运行良好 现在我想从我的web托管运行它,我已经检查了我的web托管是否支持python 如果不可能,是否有硒的替代解决方案 # -*- coding: utf-8 -*- from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from sel

我有一个从selenium生成的python脚本,它在本地主机上运行良好

现在我想从我的web托管运行它,我已经检查了我的web托管是否支持python

如果不可能,是否有硒的替代解决方案

# -*- 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()

我发现了一个基于谷歌木偶人库的好选择。 您需要的所有信息都在此网页中

您可以使用:pip install pyppeteer安装它

下面是截图的代码示例:

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())

如何从web主机服务器运行其他程序?这也没什么不同。您只需确保安装了所有必需的模块(例如,我推测他们可能没有selenium模块)。您是否找到了解决方案?请解释链接与问题的关系及其工作原理。