与 setTimeout 和 setSpeed 等效的 Python Selenium WebDriver 是什么?我有以下 Selenium IDE 代码,它在导出到 Python/unittest/Webdriver 代码时返回错误:
<tr>
<td>setTimeout</td>
<td>60000</td>
<td></td>
</tr>
<tr>
<td>setSpeed</td>
<td>0</td>
<td></td>
</tr>
导出的 Python/unittest/WebDriver 代码如下:
def test_sam(self):
driver = self.driver
# ERROR: Caught exception [ERROR: Unsupported command [setTimeout]]
# ERROR: Caught exception [ERROR: Unsupported command [setSpeed]]
.....
相同的 IDE 代码适用于 RC,但不适用于 WebDriver。请帮助我解决这个问题。