robotframework上传文件相对路径怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了robotframework上传文件相对路径怎么写相关的知识,希望对你有一定的参考价值。
choose file官方给定的解释如下:
Source:
Selenium2Library <test library>
Arguments:
[ locator | file_path ]
Inputs the `file_path` into file input field found by `identifier`.
This keyword is most often used to input files into upload forms. The
file specified with `file_path` must be available on the same host where
the Selenium Server is running.
Example:
Choose File my_upload_field /home/user/files/trades.csv
一开始以为进入到上传页面,点击浏览,再使用choose file,结果发现,这个函数包含了 点击浏览--选中文件 那么点击浏览就是多余的操作了
在该页面,就只需要执行choose 就可以将图片选中,执行的具体命令为:
choose file xpath=//div[@class=\'pd6 dot fcb\']/span/input
C:\\\\Documents and Settings\\\\zhouxuan\\\\My Documents\\\\My
Pictures\\\\bug5.png
其中xpath为选中浏览图标的路径,而 C:\\\\Documents and Settings\\\\zhouxuan\\\\My Documents\\\\My Pictures\\\\bug5.png(此处的\\\\为转义用,当只用\\时会出现错误)则为需要上传的图片的路径。
该操作执行完毕后,则会显示为:
图片已经顺利加载进来了,后续的操作就很简单了。 参考技术A 你这不是绝对路径吗?
请说明delphi 打开相对路径文件文件夹的语句怎么写
比如窗体上有一个button,希望按下时自动打开 DELPHI EXE文件同路径下的MULU文件夹。 请教这条语句怎么写。
参考技术A str:=
ExtractFilePath
(Application.ExeName);
这是程序的运行路径
ShellExecute
(Handle,'open',PChar(str+'MULU\'),nil,nil,1);打开文件夹
注意引用:ShellAPI单元
以上是关于robotframework上传文件相对路径怎么写的主要内容,如果未能解决你的问题,请参考以下文章