Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 mySql 数据库中检索图像并将其上传到我的网页上,该字段旨在从硬盘上传图像文件。
我正在使用 java、eclipse 和 selenium webdriver。
我的问题是,有可能吗?如果是,如何?
是的,它是:) 从数据库中提取它,将其保存到驱动器上的某个位置(这可以在@BeforeJUnit 框架中完成),然后使用driver.sendKeys(pathToImageOnDrive).
@Before
driver.sendKeys(pathToImageOnDrive)