0

他のマシンからテキスト ファイルを読み取るのに苦労しています。私はすでにこの\10.212.9.20\Eggplant\Test\propertyfile.txtのようなファイルをマッピングしようとしました。しかし、うまくいきません。これが私のコードです:

set the itemDelimiter to "="
    repeat with theParams = each line of file "\\10.212.9.20\Eggplant\Test\propertyfile.txt"
    insert item 2 of theParams after myList
end repeat

put item 6 of myList into ServerURL
put item 10 of myList into Username
put item 9 of myList into Password

助けてくれてありがとう。

4

2 に答える 2

0

テストしているシステムでファイルを開こうとしている場合は、eggPlant でファイルをテキスト エディターで開き、ctrl+a ctrl+c を使用してそのテキストをクリップボードにコピーできます。このテキストは、ファイルの場合と同様に解析できます。

-- Assuming you have located the file and opened it in a text editor.
click(SomeLocationWithinTheTextEditor)
typeText ControlKey, "a" -- select all
typeText ControlKey, "c" -- copy to clipboard

set myTextFile = remoteClipboard(5) -- Wait up to 5 seconds to return the clipboard content

set the item delimiter to "="
repeat for each line of myTextFile
    insert item 2 of it after myList
end repeat

put item 6 of myList into ServerURL
put item 9 of myList into Password
put item 10 of myList into Username
于 2016-01-12T18:33:16.783 に答える
0

「\10.212.9.20\Eggplant\Test\propertyfile.txt」

WindowsでeggPlantを実行していますか? EggPlant Functional on Windows は、文字でマッピングされたドライブのみを解決できるため、共有ドライブを文字 (つまり、D:\、E:) を使用してeggPlant マシンにマッピングすると、他のマシンに保存されたファイルを操作できるようになります。 :

theParams = ファイルの各行「D:\Eggplant\Test\propertyfile.txt」で繰り返します

于 2016-03-04T23:35:56.587 に答える