在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):kallisti-dev/hs-webdriver开源软件地址(OpenSource Url):https://github.com/kallisti-dev/hs-webdriver开源编程语言(OpenSource Language):Haskell 95.9%开源软件介绍(OpenSource Introduction):hs-webdriver is a Selenium WebDriver client for the Haskell programming language. You can use it to automate browser sessions for testing, system administration, etc. For more information about Selenium itself, see http://seleniumhq.org/ ContentsInstallationhs-webdriver uses the Cabal build system to configure, build, install, and generate documentation on multiple platforms. For more information on using Cabal and its various installation options, see the Cabal User's Guide at http://www.haskell.org/cabal/users-guide/index.html Installation from Hackagehs-webdriver is hosted on Hackage under the name webdriver. Thus, the simplest way to download and install the most recent version of hs-webdriver is to run: cabal install webdriver There are also options to do system-wide installation, version selection, and other build options; see cabal-install documentation. Installation from this repositoryTo build and install a git revision for a single user on your system, run these commands from within the repository directory Using cabal-installcabal install Using CabalFor systems without cabal-install available, you can also run the Setup.hs script, as such: runhaskell Setup.hs configure --user
runhaskell Setup.hs build
runhaskell Setup.hs install For more build options, please refer to the Cabal documentation. Getting StartedWebDriver is a client-server protocol. Since hs-webdriver only implements a WebDriver client, you must have a WebDriver server to which you can connect in order to make use of this library. Using the Selenium ServerWhile you can use any WebDriver server out there, probably the simplest server to use with hs-webdriver is Selenium Server. You'll need an installation of the Java runtime to use this server. Once you've downloaded Selenium Server to your current working directory, you can start the server with this shell command:
The server should now be listening at localhost on port 4444. Currently, Hello, World!With the Selenium server running locally, you're ready to write browser automation scripts in Haskell. A simple example can be found here, written in literate Haskell so that you can compile it with GHC yourself. It is very beginner friendly and assumes no prior knowledge of Haskell. For other examples see the examples and test/etc directory. Integration with Haskell Testing FrameworksThis package does not provide utilities to integrate with popular Haskell testing frameworks. However, other packages exist for this purpose: DocumentationDocumentation for hs-webdriver is available on Hackage at http://hackage.haskell.org/package/webdriver. You can also generate local HTML documentation from this source revision with the following shell command: runhaskell Setup.hs haddock Haddock will generate documentation and save it in |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论