如何测试图像是否已在聊天应用程序上发送给用户

How can I test that an image has been sent to a user on a chat application

我有一个正在为 Gherkin 开发的聊天应用程序,我要添加的功能之一是能够发送各种类型的图像,我只是不知道如何写这个。可以吗?

Given the following users exist:
| Username |
| Alice    |
| Bob      |
When "Alice" sends "Bob" "Image A"
Then "Bob" can see "Image A"

"Image A"是url的图片吗?并且,如果是,测试本身的图像位于何处?

这是一个常见的编程问题,您需要将图像位置存储在变量中并将该变量作为参数传递。您可以从小黄瓜功能文件中传递该变量名。存储文件位置见此处,希望对您有所帮助:

How to pass a text file as a argument?