當前位置: 首頁>>代碼示例>>C#>>正文


C# Browser.PostTo方法代碼示例

本文整理匯總了C#中Browser.PostTo方法的典型用法代碼示例。如果您正苦於以下問題:C# Browser.PostTo方法的具體用法?C# Browser.PostTo怎麽用?C# Browser.PostTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Browser的用法示例。


在下文中一共展示了Browser.PostTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: CanPostFileDirectlyWithoutPreloadingPageTest

        public void CanPostFileDirectlyWithoutPreloadingPageTest()
        {
            var firstFileName = Guid.NewGuid().ToString("N") + ".txt";
            var firstFile = Path.Combine(Path.GetTempPath(), firstFileName);
            var firstFileContent = Guid.NewGuid().ToString();
            var secondFileName = Guid.NewGuid().ToString("N") + ".txt";
            var secondFile = Path.Combine(Path.GetTempPath(), secondFileName);
            var secondFileContent = Guid.NewGuid().ToString();

            try
            {
                File.WriteAllText(firstFile, firstFileContent);
                File.WriteAllText(secondFile, secondFileContent);

                using (var browser = new Browser())
                {
                    var textValue = Guid.NewGuid().ToString();

                    var parameters = new List<PostEntry>
                    {
                        new PostFileEntry("files", firstFile),
                        new PostFileEntry("files", secondFile),
                        new PostEntry("SomeData", textValue)
                    };

                    var postedPage = browser.PostTo<FormFilePage>(parameters);

                    postedPage.Result.TraceResults();

                    postedPage.SomeData.Value.Should().Be(textValue);
                    postedPage.FileCount.Text.Should().Be("2");

                    var firstFileCells =
                        postedPage.PostedFiles.Find<HtmlTableRow>()
                            .ByPredicate(x => x.Html.Contains(firstFileName))
                            .Cells.ToList();

                    firstFileCells[0].Text.Should().Be(firstFileName);
                    firstFileCells[1].Text.Should().Be("text/plain");
                    firstFileCells[2].Text.Should().Be(firstFileContent);

                    var secondFileCells =
                        postedPage.PostedFiles.Find<HtmlTableRow>()
                            .ByPredicate(x => x.Html.Contains(secondFileName))
                            .Cells.ToList();

                    secondFileCells[0].Text.Should().Be(secondFileName);
                    secondFileCells[1].Text.Should().Be("text/plain");
                    secondFileCells[2].Text.Should().Be(secondFileContent);
                }
            }
            finally
            {
                File.Delete(firstFile);
                File.Delete(secondFile);
            }
        }
開發者ID:roryprimrose,項目名稱:Headless,代碼行數:57,代碼來源:PostTests.cs

示例2: CanPostStreamDirectlyWithoutPreloadingPageTest

        public void CanPostStreamDirectlyWithoutPreloadingPageTest()
        {
            var firstFileName = Guid.NewGuid().ToString("N") + ".txt";
            var secondFileName = Guid.NewGuid().ToString("N") + ".txt";

            using (var firstStream = new MemoryStream())
            {
                using (var secondStream = new MemoryStream())
                {
                    using (var browser = new Browser())
                    {
                        var firstFileContent = Guid.NewGuid().ToString();
                        var firstFileBuffer = Encoding.UTF8.GetBytes(firstFileContent);
                        var secondFileContent = Guid.NewGuid().ToString();
                        var secondFileBuffer = Encoding.UTF8.GetBytes(secondFileContent);

                        firstStream.Write(firstFileBuffer, 0, firstFileBuffer.Length);
                        secondStream.Write(secondFileBuffer, 0, secondFileBuffer.Length);

                        firstStream.Position = 0;
                        secondStream.Position = 0;

                        var textValue = Guid.NewGuid().ToString();

                        var parameters = new List<PostEntry>
                        {
                            new PostFileStreamEntry("files", firstFileName, firstStream),
                            new PostFileStreamEntry("files", secondFileName, secondStream),
                            new PostEntry("SomeData", textValue)
                        };

                        var postedPage = browser.PostTo<FormFilePage>(parameters);

                        postedPage.Result.TraceResults();

                        postedPage.SomeData.Value.Should().Be(textValue);
                        postedPage.FileCount.Text.Should().Be("2");

                        var firstFileCells =
                            postedPage.PostedFiles.Find<HtmlTableRow>()
                                .ByPredicate(x => x.Html.Contains(firstFileName))
                                .Cells.ToList();

                        firstFileCells[0].Text.Should().Be(firstFileName);
                        firstFileCells[1].Text.Should().Be("text/plain");
                        firstFileCells[2].Text.Should().Be(firstFileContent);

                        var secondFileCells =
                            postedPage.PostedFiles.Find<HtmlTableRow>()
                                .ByPredicate(x => x.Html.Contains(secondFileName))
                                .Cells.ToList();

                        secondFileCells[0].Text.Should().Be(secondFileName);
                        secondFileCells[1].Text.Should().Be("text/plain");
                        secondFileCells[2].Text.Should().Be(secondFileContent);
                    }
                }
            }
        }
開發者ID:roryprimrose,項目名稱:Headless,代碼行數:59,代碼來源:PostTests.cs


注:本文中的Browser.PostTo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。