0

我已使用以下链接作为参考,但仍然无法让我的代码打印 HTML

<title>This is the title</title>

将 Selenium 代码与 F# Canopy 一起使用

http://lefthandedgoat.github.io/canopy/actions.html

以下 3 行代码没有打印出我所期望的(我在最后尝试使用 C# 作为另一种方法)。我所期望的,是从我的 HTML 文件中提取 TITLE 并将其打印到控制台窗口。我对此还没有“目的”,但我只是在测试文档中可用的所有操作。

let theTitle = title()
printfn "Page title is: %s" title()
System.Console.WriteLine("Print the title here: {0}", theTitle);
4

1 回答 1

1

使用此代码:

let title() = @"<title>This is the title</title>"
printfn "Page title is: %s" (title())
Page title is: <title>This is the title</title>

我得到了预期的结果。由于 F# 类型推断限制,您需要在title().

于 2014-06-06T02:20:51.520 回答