我有一个参考HTML页面,该页面以图像作为输入。 https://gist.github.com/nikhilno1/353b4c9ee0ef9a18d244a514b526fb28
我想将其转换为将输入作为文本字段。我要保留“分析”按钮。
实际上很简单,但是我不是UI使用者。
我尝试过:
public void verifyBoxIsOpened() throws InterruptedException {
clickbuttonShippingAddress().waitForPresent();
Actions act = new Actions(wtd.getDriver()); act.click(clickbuttonShippingAddress()).build().perform();
}
我在使用“提交”按钮的地方,但返回的URL为“ Not Found”:
<form action="{{ url_for('analyze') }}" method="post">
<input type="text" name="analyzeText">
<input type="submit">
</form>