587 results for 'api.duckduckgo.com' (4250 ms)
README.md https://github.com/16mhz/rss-bridge.git | Markdown | 119 lines
1rss-bridge 2=== 3 4rss-bridge is a PHP project capable of generating ATOM feeds for websites which don't have one. 5 6Supported sites/pages (main) 7=== 8 9 * `FlickrExplore` : [Latest interesting images](http://www.flickr.com/explore) from Flickr 10 * `GoogleSearch` : Most recent results from Google Search 11 * `GooglePlus` : Most recent posts of user timeline 12 * `Twitter` : Return keyword/hashtag search or user timeline 13 * `Identi.ca` : Identica user timeline (Should be compatible with other Pump.io instances) 14 * `YouTube` : YouTube user channel, playlist or search 15 * `Cryptome` : Returns the most recent documents from [Cryptome.org](http://cryptome.org/)AboutWindow.xaml https://bitbucket.org/RoliSoft/rs-tv-show-tracker.git | XAML | 350 lines
1<Shell:GlassWindow x:Class="RoliSoft.TVShowTracker.AboutWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Shell="clr-namespace:Microsoft.WindowsAPICodePack.Shell;assembly=Microsoft.WindowsAPICodePack.Shell" Height="290" Width="408" Icon="/RSTVShowTracker;component/Images/information.png" Loaded="GlassWindowLoaded" ResizeMode="NoResize" Title="About RS TV Show Tracker" WindowStartupLocation="CenterScreen"> 2 <Window.Resources> 3 4 <!-- hyperlink style --> 5 <Style TargetType="{x:Type Hyperlink}"> 6 <Setter Property="Foreground" Value="Yellow" /> 7 <Setter Property="TextDecorations" Value="None" /> 8 <EventSetter Event="MouseEnter" Handler="HyperlinkMouseEnter" /> 9 <EventSetter Event="MouseLeave" Handler="HyperlinkMouseLeave" /> 10 <EventSetter Event="Click" Handler="HyperlinkClick" /> 11 </Style> 12 13 <!-- scrollbar style --> 14 <Style x:Key="ScrollBarLineButton" TargetType="{x:Type RepeatButton}"> 15 <Setter Property="SnapsToDevicePixels" Value="True" />manual.txt https://github.com/mwcz/nikola.git | Plain Text | 1,136 lines
1The Nikola Handbook 2=================== 3 4:Version: 5.4.4 5 6.. class:: alert alert-info pull-right 7 8.. contents:: 9 10 11All You Need to Know 12-------------------- 13 14After you have Nikola installed: 15Request.pm https://gitlab.com/lanodan/duckduckgo.git | Perl | 388 lines
1package DDG::Request; 2# ABSTRACT: A request to DuckDuckGo itself, so the query itself and parameter around the query defining him 3 4use Moo; 5use utf8; 6use List::MoreUtils qw{ uniq }; 7 8=head1 SYNOPSIS 9 10 my $req = DDG::Request->new( query_raw => "Peter PAUL AND MARY!" ); 11 print $req->query_clean; # "peter paul and mary" 12 13=head1 DESCRIPTION 14 15This is the main request class which reflects a query and all parameter thatREADME.md https://gitlab.com/vinzv/rss-bridge.git | Markdown | 130 lines
1rss-bridge 2=== 3 4rss-bridge is a PHP project capable of generating ATOM feeds for websites which don't have one. 5 6Supported sites/pages (main) 7=== 8 9 * `FlickrExplore` : [Latest interesting images](http://www.flickr.com/explore) from Flickr 10 * `GoogleSearch` : Most recent results from Google Search 11 * `GooglePlus` : Most recent posts of user timeline 12 * `Twitter` : Return keyword/hashtag search or user timeline 13 * `Identi.ca` : Identica user timeline (Should be compatible with other Pump.io instances) 14 * `YouTube` : YouTube user channel, playlist or search 15 * `Cryptome` : Returns the most recent documents from [Cryptome.org](http://cryptome.org/)https-urls.txt git://github.com/xbmc/xbmc.git | Plain Text | 5,974 lines
1https://015d8fb.netsolstores.com/index.asp?PageAction=VIEWPROD&ProdID=639 2https://1000607.secureresellerservices.com/reseller/terms-merchant.aspx 3https://1083.extraawards.com/cwa/login.do 4https://163.150.129.123 5https://192.168.2.1/ 6https://1stmariner.mybankhq.com/scraped_user/login 7https://1stmarinercommunity.mybankhq.com/answers 8https://2028.globalsign.com/ 9https://209.195.146.79/mb.asp 10https://247livesupport.biz 11https://247livesupport.biz/ticket/index.php?_m=news&_a=view 12https://2unblocksites.com/ 13https://365.rsaconference.com/blogs/rsa-conference-blog/2010/02/28/keynotes-tracking-the-industry 14https://3enabled.portallogin.net/portalWeb/partner/common/login/begin.do 15https://4846938711.secure-loancenter.com/WebApp/FullAppLogin.aspxsearchenginesmanager.cpp https://github.com/JHooverman/QupZilla.git | C++ | 341 lines
1/* ============================================================ 2* QupZilla - WebKit based browser 3* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com> 4* 5* This program is free software: you can redistribute it and/or modify 6* it under the terms of the GNU General Public License as published by 7* the Free Software Foundation, either version 3 of the License, or 8* (at your option) any later version. 9* 10* This program is distributed in the hope that it will be useful, 11* but WITHOUT ANY WARRANTY; without even the implied warranty of 12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13* GNU General Public License for more details. 14* 15* You should have received a copy of the GNU General Public LicenseShorten.pm https://github.com/robertbrook/zeroclickinfo-spice.git | Perl | 29 lines
1package DDG::Spice::Shorten; 2# ABSTRACT: Return a shortened version of a URL using the bitly API. 3 4use DDG::Spice; 5 6primary_example_queries "shorten http://www.duckduckgo.com/about.html"; 7secondary_example_queries "url shorten www.github.com/explore"; 8description "Shorten URLs using the is.gd API"; 9name "Shorten"; 10icon_url "/i/is.gd.ico"; 11source "Shorten"; 12code_url "https://github.com/duckduckgo/zeroclickinfo-spice/blob/master/lib/DDG/Spice/Shorten.pm"; 13topics "social"; 14category "computing_tools"; 15attribution github => ['https://github.com/danjarvis','Dan Jarvis'],settings.js https://gitlab.com/mikegerwitz/gnuzilla.git | JavaScript | 185 lines
1// Poodle attack 2pref("security.tls.version.min", 1); 3 4// Disable default browser checking. 5pref("browser.shell.checkDefaultBrowser", false); 6 7// Don't disable extensions dropped in to a system 8// location, or those owned by the application 9pref("extensions.autoDisableScopes", 3); 10//pref("extensions.enabledScopes", 15); 11 12// Don't display the one-off addon selection dialog when 13// upgrading from a version of Firefox older than 8.0 14pref("extensions.shownSelectionUI", true); 15CONTRIBUTING.md git://github.com/ajanicij/goduckgo.git | Markdown | 82 lines
1Contributing to GoDuckGo 2======================== 3 4If you love Go and DuckDuckGo, then this is 5your place. We're waiting for your Pull Request! 6 7Getting Started 8--------------- 9 10Before you can do anything, you first need a [GitHub account](https://github.com/signup/free). 11This is required because we use GitHub to handle all incoming *Pull Requests* (code modifications) 12and *Issues* (bug reports) which cannot be made without a GitHub account. 13 14Submitting a **Bug** or **Suggestion** 15--------------------------------------views.py https://bitbucket.org/rattray/histography.git | Python | 284 lines
1from django.shortcuts import render_to_response 2from django.http import HttpResponse, HttpResponseRedirect 3import urllib2 as urllib 4 5from app.models import * 6 7import os, sys, datetime, copy, logging, settings, csv, re, json, time, ast 8 9# Change everything in this class! Makes things pretty fast and easy 10# so the basic info about the site is ubiquitous. 11class globvars(): 12 proj_name = "histography" # change this! 13 founders = [ 14 {'name':'Alex Rattray', #obviously, not you. 15 'email':'rattray@wharton.upenn.edu',RepoXMLHandlerTest.java https://gitlab.com/namjae/fdroidclient.git | Java | 669 lines
1 2package org.fdroid.fdroid; 3 4import android.test.AndroidTestCase; 5import android.text.TextUtils; 6import android.util.Log; 7 8import org.fdroid.fdroid.data.Apk; 9import org.fdroid.fdroid.data.App; 10import org.fdroid.fdroid.data.Repo; 11import org.xml.sax.InputSource; 12import org.xml.sax.SAXException; 13import org.xml.sax.XMLReader; 14 15import java.io.BufferedInputStream;RepoXMLHandlerTest.java https://gitlab.com/fdroid/fdroidclient.git | Java | 689 lines
1 2package org.fdroid.fdroid; 3 4import android.support.annotation.NonNull; 5import android.test.AndroidTestCase; 6import android.text.TextUtils; 7import android.util.Log; 8 9import org.fdroid.fdroid.data.Apk; 10import org.fdroid.fdroid.data.App; 11import org.fdroid.fdroid.data.Repo; 12import org.fdroid.fdroid.mock.MockRepo; 13import org.xml.sax.InputSource; 14import org.xml.sax.SAXException; 15import org.xml.sax.XMLReader;report.txt https://github.com/bhyde/Ghostery-Scrap.git | Plain Text | 190 lines
1200 http://www.lookery.com Lookery http://www.ghostery.com/apps/lookery 2800000 http://www.google.com/analytics/ Google Analytics http://www.ghostery.com/apps/google_analytics 310000 http://www.mybloglog.com/ MyBlogLog http://www.ghostery.com/apps/mybloglog 440000 http://www.quantcast.com/ Quantcast http://www.ghostery.com/apps/quantcast 51000 http://web.analytics.yahoo.com/ IndexTools http://www.ghostery.com/apps/indextools 620000 http://www.sitemeter.com/ SiteMeter http://www.ghostery.com/apps/sitemeter 71000 http://www.lijit.com/ Lijit http://www.ghostery.com/apps/lijit 820000 http://www.omniture.com/en/ Omniture http://www.ghostery.com/apps/omniture 97000 http://crazyegg.com/ Crazy Egg http://www.ghostery.com/apps/crazy_egg 104000 http://www.snap.com/ Snap http://www.ghostery.com/apps/snap 1170000 http://www.statcounter.com/ Statcounter http://www.ghostery.com/apps/statcounter 124000 http://piwik.org/ Piwik Analytics http://www.ghostery.com/apps/piwik_analytics 134000 http://haveamint.com/ Mint http://www.ghostery.com/apps/mint 1410 http://www.facebook.com/beacon/faq.php Facebook Beacon http://www.ghostery.com/apps/facebook_beacon 15NIL http://www.typepad.com/features/statistics.html Typepad Stats http://www.ghostery.com/apps/typepad_statsmixpanel.js https://github.com/ShiftFinancial/ripple-client.git | JavaScript | 3,017 lines
1/* 2 * Mixpanel JS Library v2.2.0 3 * 4 * Copyright 2012, Mixpanel, Inc. All Rights Reserved 5 * http://mixpanel.com/ 6 * 7 * Includes portions of Underscore.js 8 * http://documentcloud.github.com/underscore/ 9 * (c) 2011 Jeremy Ashkenas, DocumentCloud Inc. 10 * Released under the MIT License. 11 */ 12 13// ==ClosureCompiler== 14// @compilation_level ADVANCED_OPTIMIZATIONS 15// @output_file_name mixpanel-2.2.min.jsRepoXMLHandlerTest.java https://gitlab.com/dschuermann/fdroidclient.git | Java | 783 lines
1 2package org.fdroid.fdroid; 3 4import android.support.annotation.NonNull; 5import android.text.TextUtils; 6import android.util.Log; 7 8import org.fdroid.fdroid.data.Apk; 9import org.fdroid.fdroid.data.App; 10import org.fdroid.fdroid.data.Repo; 11import org.fdroid.fdroid.mock.MockRepo; 12import org.junit.Test; 13import org.junit.runner.RunWith; 14import org.robolectric.RobolectricGradleTestRunner; 15import org.robolectric.annotation.Config;RepoXMLHandlerTest.java https://gitlab.com/pserwylo/fdroidclient.git | Java | 856 lines
1/* 2 * Copyright (C) 2016 Blue Jay Wireless 3 * Copyright (C) 2015 Daniel Martà <mvdan@mvdan.cc> 4 * Copyright (C) 2014-2016 Hans-Christoph Steiner <hans@eds.org> 5 * Copyright (C) 2014-2016 Peter Serwylo <peter@serwylo.com> 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 3 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details.RepoXMLHandlerTest.java https://gitlab.com/SWW13/fdroidclient.git | Java | 782 lines
1 2package org.fdroid.fdroid; 3 4import android.support.annotation.NonNull; 5import android.text.TextUtils; 6import android.util.Log; 7 8import org.fdroid.fdroid.data.Apk; 9import org.fdroid.fdroid.data.App; 10import org.fdroid.fdroid.data.Repo; 11import org.fdroid.fdroid.mock.MockRepo; 12import org.junit.Test; 13import org.junit.runner.RunWith; 14import org.robolectric.RobolectricGradleTestRunner; 15import org.robolectric.annotation.Config;RepoXMLHandlerTest.java https://gitlab.com/thesebas/fdroidclient.git | Java | 859 lines
1/* 2 * Copyright (C) 2016 Blue Jay Wireless 3 * Copyright (C) 2015 Daniel Martà <mvdan@mvdan.cc> 4 * Copyright (C) 2014-2016 Hans-Christoph Steiner <hans@eds.org> 5 * Copyright (C) 2014-2016 Peter Serwylo <peter@serwylo.com> 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 3 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details.assertions.html git://github.com/lefthandedgoat/canopy.git | HTML | 211 lines
1<!doctype html> 2<html data-reactroot="" lang="en"><head><title>canopy docs / assertions.html-canopy</title><meta name="viewport" content="width=device-width, initial-scale=1" /><link href="https://lefthandedgoat.github.io/canopy/content/toggle-bootstrap.min.css?version=637191850341272396" type="text/css" rel="stylesheet" /><link href="https://lefthandedgoat.github.io/canopy/content/toggle-bootstrap-dark.min.css?version=637191850341272396" type="text/css" rel="stylesheet" /><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet" integrity="sha384-KA6wR/X5RY4zFAHpv/CnoG2UW1uogYfdnP67Uv7eULvTveboZJg0qUpmJZb5VqzN" crossorigin="anonymous" /><link href="https://lefthandedgoat.github.io/canopy/content/style.css?version=637191850341272396" type="text/css" rel="stylesheet" /></head><body><nav class="navbar navbar-expand-md sticky-top navbar-dark bg-dark"><a class="navbar-brand" href="https://lefthandedgoat.github.io/canopy/index.html"><i class="fa fa-tree text-white mr-2"></i>canopy</a><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button><div class="collapse navbar-collapse" id="navbarNav"><ul class="navbar-nav mr-auto"><li class="nav-item dropdown"><a id="navbarDropdown-Api_Reference" href="#" data-toggle="dropdown" aria-haspopup class="nav-link dropdown-toggle">Api Reference</a><ul aria-labelledby="dropdownMenu1" class="dropdown-menu border-0 shadow"><li class="dropdown-submenu"><a id="navbarDropdown-canopy" href="#" role="button" data-toggle="dropdown" aria-haspopup class="dropdown-item dropdown-toggle">canopy</a><ul aria-labelledby="dropdownMenu2" class="dropdown-menu border-0 shadow"><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy.html">canopy</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-classic.html">canopy classic</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-configuration.html">canopy configuration</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-csharp-canopy.html">canopy csharp canopy</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-finders.html">canopy finders</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-finders-byjquery.html">canopy finders byjquery</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-history.html">canopy history</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-jarowinkler.html">canopy jarowinkler</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-jarowinkler-result.html">canopy jarowinkler result</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-parallell-functions.html">canopy parallell functions</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-parallell-functions-navigate.html">canopy parallell functions navigate</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-parallell-instanced.html">canopy parallell instanced</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-parallell-instanced-instance.html">canopy parallell instanced instance</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-reporters.html">canopy reporters</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-reporters-consolereporter.html">canopy reporters consolereporter</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-reporters-junitreporter.html">canopy reporters junitreporter</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-reporters-livehtmlreporter.html">canopy reporters livehtmlreporter</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-reporters-teamcityreporter.html">canopy reporters teamcityreporter</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-runner-classic.html">canopy runner classic</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-screen.html">canopy screen</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-screen-screenboundary.html">canopy screen screenboundary</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types.html">canopy types</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-browsers.html">canopy types browsers</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-browserstartmode.html">canopy types browserstartmode</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopycheckfailedexception.html">canopy types canopycheckfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopycontainsfailedexception.html">canopy types canopycontainsfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopycountexception.html">canopy types canopycountexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopydeselectionfailedexception.html">canopy types canopydeselectionfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopydisabledfailedexception.html">canopy types canopydisabledfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopydisplayedfailedexception.html">canopy types canopydisplayedfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyelementnotfoundexception.html">canopy types canopyelementnotfoundexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyenabledfailedexception.html">canopy types canopyenabledfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyequalityfailedexception.html">canopy types canopyequalityfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyexception.html">canopy types canopyexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopymorethanoneelementfoundexception.html">canopy types canopymorethanoneelementfoundexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopynobrowserexception.html">canopy types canopynobrowserexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopynotcontainsfailedexception.html">canopy types canopynotcontainsfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopynotdisplayedfailedexception.html">canopy types canopynotdisplayedfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopynotequalsfailedexception.html">canopy types canopynotequalsfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopynotstringorelementexception.html">canopy types canopynotstringorelementexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyonexception.html">canopy types canopyonexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyoptionnotfoundexception.html">canopy types canopyoptionnotfoundexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyreadexception.html">canopy types canopyreadexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyreadonlyexception.html">canopy types canopyreadonlyexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyselectionfailedexeception.html">canopy types canopyselectionfailedexeception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyskiptestexception.html">canopy types canopyskiptestexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyuncheckfailedexception.html">canopy types canopyuncheckfailedexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyvalueinlistexception.html">canopy types canopyvalueinlistexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopyvaluenotinlistexception.html">canopy types canopyvaluenotinlistexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-canopywaitforexception.html">canopy types canopywaitforexception</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-direction.html">canopy types direction</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-ireporter.html">canopy types ireporter</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-result.html">canopy types result</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-suite.html">canopy types suite</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-types-test.html">canopy types test</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\canopy-wait.html">canopy wait</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\global-screensizes.html">global screensizes</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy\global-useragents.html">global useragents</a></li></ul></li><li class="dropdown-submenu"><a id="navbarDropdown-canopy.integration" href="#" role="button" data-toggle="dropdown" aria-haspopup class="dropdown-item dropdown-toggle">canopy.integration</a><ul aria-labelledby="dropdownMenu2" class="dropdown-menu border-0 shadow"><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-csharp-integration.html">canopy csharp integration</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-csharp-loadtest-job.html">canopy csharp loadtest job</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-csharp-loadtest-runner.html">canopy csharp loadtest runner</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-csharp-loadtest-task.html">canopy csharp loadtest task</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-integration-loadtest.html">canopy integration loadtest</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-integration-loadtest-job.html">canopy integration loadtest job</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy-integration-loadtest-task.html">canopy integration loadtest task</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\canopy.integration.html">canopy.integration</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\global-jsonvalidator.html">global jsonvalidator</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\jsonvalidator-difference.html">jsonvalidator difference</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\jsonvalidator-meta.html">jsonvalidator meta</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Api_Reference\canopy.integration\jsonvalidator-type.html">jsonvalidator type</a></li></ul></li></ul></li><li class="nav-item dropdown"><a id="navbarDropdown-Docs" href="#" data-toggle="dropdown" aria-haspopup class="nav-link dropdown-toggle">Docs</a><ul aria-labelledby="dropdownMenu1" class="dropdown-menu border-0 shadow"><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Docs\actions.html">actions</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Docs\assertions.html">assertions</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Docs\configuration.html">configuration</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Docs\reporting.html">reporting</a></li><li class="nav-item"><a class="dropdown-item" href="https://lefthandedgoat.github.io/canopy/\Docs\testing.html">testing</a></li></ul></li></ul><ul class="navbar-nav"><button id="theme-toggle" class=""></button><li class="nav-item"><a class="nav-link" aria-label="canopy Repository on Github" href="https://github.com/lefthandedgoat/canopy"><i class="fab fa-github fa-lg fa-fw text-light"></i></a></li></ul></div></nav><div class="wrapper d-flex flex-column justify-content-between min-vh-100"><main class="container main mb-4"><div><h1><a name="Assertions" class="anchor" href="#Assertions">Assertions</a></h1> 3<h2><a name="equals" class="anchor" href="#equals">== (equals)</a></h2> 4<p>Assert that the element on the left is equal to the value on the right.</p> 5<table class="pre"><tr><td class="lines"><pre class="fssnip"><span class="l">1: </span> 6</pre></td> 7<td class="snippet"><pre class="fssnip highlighted"><code lang="fsharp"><span class="s">"#firstName"</span> <span class="o">==</span> <span class="s">"Alex"</span> 8</code></pre></td> 9</tr> 10</table> 11<h2><a name="does-not-equal" class="anchor" href="#does-not-equal">!= (does not equal)</a></h2> 12<p>Assert that the element on the left is not equal to the value on the right.</p> 13<table class="pre"><tr><td class="lines"><pre class="fssnip"><span class="l">1: </span> 14</pre></td> 15<td class="snippet"><pre class="fssnip highlighted"><code lang="fsharp"><span class="s">"#firstName"</span> <span class="o">!=</span> <span class="s">"Tom"</span>