所有的自动化测试软件都慢吗? Selenium出现速度问题

时间:2018-06-21 03:33:58

标签: performance selenium testing qa


仅此设置大约需要10秒钟。我不仅在Selenium上注意到了这一点,在Galen框架上也注意到了这一点。 有没有更快的选择/我可以做些什么来加快它的速度? 我也尝试过在Firefox和Chrome之间切换,并没有什么作用。 >

将内容放在上下文中:

import unittest
from selenium import webdriver
#from selenium.webdriver.common.keys import Keys
#from selenium.webdriver.support.ui import Select


class paymentForm(unittest.TestCase):
    def setUp(self):
        self.driver=webdriver.Chrome()

    def test_login(self):
        driver=self.driver
        driver.get("http://selenium-python.readthedocs.io/")
        self.assertIn("Selenium with Python",driver.title)

结果:Ran 1 test in 11.253s

平均:11s,正如您所看到的,代码甚至没有检查任何主要的事情或尚未真正做任何事情。只是加载页面并声明一个。

此外,对于这个主题我不太清楚,但是我读到Python在性能方面是更好的语言之一(即它已经比我以前说过的Java更快)

0 个答案:

没有答案