Capybara. Exemplos de configuração. Com cucumber-rails. Com cucumber sem Rails. Tags para uso de JS. Nos steps do cucumber. Utilizando com RSpec

Size: px
Start display at page:

Download "Capybara. Exemplos de configuração. Com cucumber-rails. Com cucumber sem Rails. Tags para uso de JS. Nos steps do cucumber. Utilizando com RSpec"

Transcription

1 Capybara Exemplos de configuração Com cucumber-rails Com cucumber sem Rails rails generate cucumber:install -- capybara require 'capybara/cucumber' Capybara.app = MyRackApp Nos steps do cucumber When /I sign in/ do Tags para uso de Capybara.javascript_driver = :culerity Utilizando com RSpec require 'capybara/rspec' describe "the signup process", :type => :request do before :each do User.make(: =>, :password => 'caplin') it "signs me in" do

2 DSL do Capybara feature "Signing up" do background do User.make(: =>, :password => 'caplin') scenario "Signing in with correct credentials" do fill_in 'Password', :with => 'caplin' Isto é apenas uma forma de utilizar o RSpec. Habilitando o driver JS feature é um alias para describe, :type => :request background é um alias para before' scenario é um alias para it/specify describe 'some stuff which requires js', :js => true do it 'will use the default js driver' it 'will switch to one specific driver', :driver => :celerity Junto com Test::Unit class ActionDispatch::IntegrationTest include Capybara::DSL Capybara com qualquer aplicação Rack Capybara.app = MyRackApp Selecionando o Driver Capybara.default_driver = :selenium Capybara.current_driver = :rack_test # Este é o padrão se não mudarmos para outro na linha acima Capybara.use_default_driver #volta para o driver padrão A DSL

3 Navegando visit('/projects') visit(post_comments_path(post)) current_path.should == post_comments_path(post) Clicando em links e botões click_link('id-of-link') click_link('link Text') click_button('save') click_on('link Text') # clica em um link ou botão click_on('button Value') Interagindo com formulários fill_in('first Name', :with => 'John') fill_in('password', :with => 'Seekrit') fill_in('description', :with => 'Really Long Text') choose('a Radio Button') check('a Checkbox') uncheck('a Checkbox') attach_file('image', '/path/to/image.jpg') select('option', :from => 'Select Box') Verificando o conteúdo da página page.has_selector?('table tr') page.has_selector?(:xpath, '//table/tr') page.has_no_selector?(:content) page.has_xpath?('//table/tr') page.has_css?('table tr.foo') page.has_content?('foo') page.has_text?('foo') Verificando o conteúdo da página com RSpec page.should have_selector('table tr') page.should have_selector(:xpath, '//table/tr') page.should have_no_selector(:content) page.should have_xpath('//table/tr') page.should have_css('table tr.foo') page.should have_text('foo') page.should have_no_text('foo') page.html.should match /<span>/i Buscando find_field('first Name').value find_link('hello').visible? find_button('s').click find(:xpath, "//table/tr").click find("#overlay").find("h1").click all('a').each { a a[:href] } find('#navigation').click_link('home') find('#navigation').should have_button('sign out') Definindo escopos within("li#employee") do Rodando Javascript page.execute_script("$('body').empty()") result = page.evaluate_script('4 + 4'); within(:xpath, "//li[@id='employee']") do within_fieldset('employee') do within_table('employee') do

4 Debug save_and_open_page Mais exemplos Utilizando a DSL em qualquer lugar require 'capybara' require 'capybara/dsl' Capybara.default_driver = :culerity module MyModule include Capybara::DSL def login! within("//form[@id='session']") do Chamando servidores remotos visit(' Capybara.current_driver = :selenium Capybara.app_host = ' visit('/') Capybara sem o servidor Rack interno Capybara.run_server = false Session require 'capybara' session = Capybara::Session.new(:culerity, my_rack_app) session.within("//form[@id='session']") do session. session.fill_in 'Password', :with => 'password' session. Seletores XPath within(:xpath, '//ul/li') { } find(:xpath, '//ul/li').text find(:xpath, '//li[contains(.//a[@href = "#"]/text(), "foo")]').value Seletores padrão Capybara.default_selector = :xpath find('//ul/li').text

5 Seletores personalizados Capybara.add_selector(:id) do xpath { id XPath.descant[XPath.attr(:id) == id.to_s] } Capybara.add_selector(:row) do xpath { num ".//tbody/tr[#{num}]" } Capybara.add_selector(:flash_type) do css { type "#flash.#{type}" } Adicionando drivers Capybara.register_driver :selenium do app Capybara::Selenium::Driver.new(app, :browser => :chrome) Capybara.register_driver :selenium_chrome do app Capybara::Selenium::Driver.new(app, :browser => :chrome) find(:id, 'post_123') find(:row, 3) find(:flash_type, :notice) Parte do Livro de Rails 3.1 de Rodrigo Urubatan Ferreira Jardim, guia de referência rápida publicado originalmente em

Cucumber and Capybara

Cucumber and Capybara Cucumber and Capybara A commons case study old vs new old new testingframework test-unit v1 cucumber browser-driver pure selenium v1 capybara vs Plain text scenarios with features Step definitions shamelessly

More information

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil.

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil. Produto : Totvs + Foundation Saúde + 11.5.3 Chamado : TFOQEI Data da criação : 27/08/12 Data da revisão : 10/09/12 País(es) : Brasil Banco(s) de Dados : Esta implementação consiste em atender a legislação

More information

NAS 221 Remote Access Using Cloud Connect TM

NAS 221 Remote Access Using Cloud Connect TM NAS 221 Remote Access Using Cloud Connect TM Access the files on your NAS remotely with Cloud Connect TM A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able

More information

External User Manual. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P.

External User Manual. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P. Página 1 de 11 Index 1 Introduction... 3 2 Using the Online Registration Form...

More information

Agile Web Application Testing

Agile Web Application Testing Agile Web Application Testing Technologies and Solutions V. Narayan Raman Tyto Software Goals Rapid feedback on the quality of software Problem in Web App Testing Many Browsers Many Operating Systems Browsers

More information

Agenda 10-6-2013. Polteq 1. ie-net 11 juni 2013

Agenda 10-6-2013. Polteq 1. ie-net 11 juni 2013 Behavior Driven Testing with Cucumber demystified ie-net 11 juni 2013 Agenda Who am I Scope Behavior Driven Development / Testing (BDD / BDT) Domain Specific Languages (DSL) Cucumber Bringing it all together

More information

Intermediate Cucumber Continued. CSCI 5828: Foundations of Software Engineering Lecture 22 04/05/2012

Intermediate Cucumber Continued. CSCI 5828: Foundations of Software Engineering Lecture 22 04/05/2012 Intermediate Cucumber Continued CSCI 5828: Foundations of Software Engineering Lecture 22 04/05/2012 1 Goals Continue to work through a detailed example of using Cucumber by reviewing the material in chapter

More information

Online Statements. About this guide. Important information

Online Statements. About this guide. Important information Online Statements About this guide This guide shows you how to: View online statements, including CommBiz Activity Statements (Billing summaries) and online statements for Transaction Accounts, Credit

More information

SYSPRO App Store: Registration Guide

SYSPRO App Store: Registration Guide SYSPRO App Store: Registration Guide SYSPRO App Store Registration Guide 2 Table of Contents What is the SYSPRO App Store?... 3 The SYSPRO App Store URL... 3 Who can use it?... 3 Register as a customer...

More information

THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS. myclass AN ENGLISH COURSE THAT FITS YOUR LIFE

THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS. myclass AN ENGLISH COURSE THAT FITS YOUR LIFE THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS myclass AN ENGLISH COURSE THAT FITS YOUR LIFE Porquê myclass Why myclass? A importância do Inglês é fundamental tanto na construção da sua

More information

Uma Ferramenta Essencial! Prof. Fred Sauer, D.Sc. fsauer@gmail.com

Uma Ferramenta Essencial! Prof. Fred Sauer, D.Sc. fsauer@gmail.com Uma Ferramenta Essencial! Prof. Fred Sauer, D.Sc. fsauer@gmail.com Quem é WireShark? Packet sniffer/protocol analyzer Ferramenta de Rede de código aberto Evolução do Ethereal Instalação Instalação no

More information

Access Manager. Help scenarios. Home. Access and permissions: Assigning or modifying access and permissions Copy permissions Manage Access

Access Manager. Help scenarios. Home. Access and permissions: Assigning or modifying access and permissions Copy permissions Manage Access Help scenarios Access and : Assigning or modifying access and Copy Manage Access Restricted Clients Add a restricted client Manage who can access a restricted client Business Appointments (Appointing Business)

More information

Exploring Web Testing Tools For Use In A Classroom

Exploring Web Testing Tools For Use In A Classroom Exploring Web Testing Tools For Use In A Classroom Brian Valerius and Elena Machkasova (Advisor) Computer Science Discipline University of Minnesota Morris Morris MN, 56267 valer028@umn.edu, elenam@umn.edu

More information

Register Manufacturer: Click on Register Manufacturer radio button, choose the State name and click on Login Button. The following screen appears:

Register Manufacturer: Click on Register Manufacturer radio button, choose the State name and click on Login Button. The following screen appears: USER MANUAL Click on the Internet Explorer icon on the Computer. Type http://farmer.gov.in/dealers/login.aspx on the address bar of Internet Explorer Window. The following screen will appear. Choose the

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME FINAL NACIONAL DO ENSINO SECUNDÁRIO Prova Escrita de Inglês 11.º Ano de Escolaridade Continuação bienal Decreto-Lei n.º 139/2012, de 5 de julho Prova 550/2.ª Fase 8 Páginas Duração da Prova: 120

More information

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7 Microsoft Outlook with Initial Setup of Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access

More information

ParishSOFT Remote Installation

ParishSOFT Remote Installation Table of Contents Setting up Remote Solution Windows 7 or Vista... 1 Connecting to ParishSOFT... 1 Accessing Your database... 3 Switching to your parish database... 4 Setting up Accounts for users... 5

More information

Inovando sistemas com arquiteturas elásticas

Inovando sistemas com arquiteturas elásticas Inovando sistemas com arquiteturas elásticas Renato Bognar Principal System Engineer 1 Agenda Quais são os desafios de construir ua aplicação? Quais os pontos de atenção? Vai construir Apps móveis? Desfazendo

More information

DocuSign for Microsoft Dynamics CRM 2011 2.0.2

DocuSign for Microsoft Dynamics CRM 2011 2.0.2 Quick Start Guide DocuSign for Microsoft Dynamics CRM 2011 2.0.2 Published April 2014 Overview This guide provides information on installing and sending documents for signature with DocuSign for Microsoft

More information

Setup guide for ebanking. member of staff for details. large print, on tape and on disk. Speak to a. This publication is also available in Braille,

Setup guide for ebanking. member of staff for details. large print, on tape and on disk. Speak to a. This publication is also available in Braille, Danske Bank is a trading name of Northern Bank Limited Registered in Northern Ireland No:R568 Registered Office: Donegall Square West Belfast BT1 6JS www.danskebank.co.uk Northern Bank Limited is a member

More information

Online Class Registration Quick Guide for Students

Online Class Registration Quick Guide for Students Online Class Registration Quick Guide for Students The purpose of this document is to help students get started with the OCR System. This document will explain about the Login, the general class registration

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

Getting Started with WPM

Getting Started with WPM NEUSTAR USER GUIDE Getting Started with WPM Neustar Web Performance is the cloud-based platform offering real-time data and analysis, helping to remove user barriers and optimize your site. Contents Getting

More information

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty 03 infra TI RAID MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty Por que RAID? Redundant Array Inexpensive Disks x Redudant Array Independent Disks Performance limitation of disk

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME NACIONAL DO ENSINO SECUNDÁRIO Decreto-Lei n.º 74/2004, de 26 de março Prova Escrita de Inglês 10.º e 11.º Anos de Escolaridade Continuação bienal Prova 550/2.ª Fase 8 Páginas Duração da Prova: 120

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

SecureAnywhereTM Web Security Service

SecureAnywhereTM Web Security Service SecureAnywhereTM Web Security Service This document provides a general overview of the Webroot SecureAnywhere Web Security Service Partner Management Portal. Webroot Partners such as Managed Service Providers

More information

Android Bootcamp. Elaborado (com adaptações) a partir dos tutoriais:

Android Bootcamp. Elaborado (com adaptações) a partir dos tutoriais: Android Bootcamp Elaborado (com adaptações) a partir dos tutoriais: http://developer.android.com/resources/tutorials/hello-world.html http://developer.android.com/resources/tutorials/views/index.html Bootcamp

More information

Android App for SAP Business One. Z3moB1le App Version 1.00 Pagina 1 di 12. www.z3engineering.it

Android App for SAP Business One. Z3moB1le App Version 1.00 Pagina 1 di 12. www.z3engineering.it Android App for SAP Business One Z3moB1le App Version 1.00 Pagina 1 di 12 Z3 Mobile for SAP Business One (Z3moB1le) Contents Overview... 3 Phone requirements... 3 Available modules... 4 Settings before

More information

Creating a generic user-password application profile

Creating a generic user-password application profile Chapter 4 Creating a generic user-password application profile Overview If you d like to add applications that aren t in our Samsung KNOX EMM App Catalog, you can create custom application profiles using

More information

Addax Business Solutions - Support Services

Addax Business Solutions - Support Services Table of Contents 1 Introduction... 1 1.1 Useful contacts... 1 2 Addax Web Based Support System (AWBS)... 2 2.1 Obtaining Your AWBS Password... 2 2.2 Login to AWBS... 2 2.3 Viewing existing calls... 3

More information

DATA SHEET Setup Tutorial

DATA SHEET Setup Tutorial NetDirector Password Manager Getting Started To begin setting up your account first go to http://www.netdirector.biz:10002/passwordmanager On the main screen there will be a link don t have an account?

More information

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com How do I sign up for a Canvas account as a Parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente P

CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente P CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente Download: CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? Enterprise Computing & Service Management How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend

More information

Install MSU Google Drive on your Computer

Install MSU Google Drive on your Computer 416 Agriculture Hall Michigan State University 517-355-3776 http://support.anr.msu.edu support@anr.msu.edu Install MSU Google Drive on your Computer Document # - 168 Creation/Revision Date 4/2013 Revision

More information

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai

91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai 91.527 - Human Computer Interaction Final Project Tutorial Hardware Inventory Management System (HIMS) By Table of Contents Introduction... 3 Running HIMS... 3 Successful Login to HIMS... 4 HIMS Main Screen...

More information

The Register Menu allows you to register, download, and activate licenses so that your players can run.

The Register Menu allows you to register, download, and activate licenses so that your players can run. Registration Help The Register Menu allows you to register, download, and activate licenses so that your players can run. Copyright 2013 - BrainTrain, Inc. - All Rights Reserved 1 of 8 License Types Station

More information

How To Make A Website More Popular

How To Make A Website More Popular Dicas e Truques de Otimização de Websites Python Dicas e Truques de Otimização de Websites Python Fabiano Weimar dos Santos [Xiru] xiru@xiru.org FISL 9. - 28 Porto Alegre - RS O que iremos ver? Na PyCon

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

webcrm App for HootSuite User Guide

webcrm App for HootSuite User Guide webcrm App for HootSuite User Guide 07 December 2014 Contents General... 3 Install the webcrm App on HootSuite... 4 Configure webcrm HootSuite Integration in webcrm... 6 Add Custom Attributes... 6 Map

More information

Homepage / Login FAQ - VENDOR MANAGEMENT SYSTEM

Homepage / Login FAQ - VENDOR MANAGEMENT SYSTEM Homepage / Login To access the Login dropdown box, click on the Login hyperlink on the upper right side of the page Returning users enter their existing credentials, click on the Login button, and are

More information

Active Directory Integration for Greentree

Active Directory Integration for Greentree App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3

More information

REDES DE ARMAZENAMENTO E ALTA DISPONIBILIDADE

REDES DE ARMAZENAMENTO E ALTA DISPONIBILIDADE REDES DE ARMAZENAMENTO E ALTA DISPONIBILIDADE O que é SAN? SAN Storage Área Network Rede de armazenamento. É uma rede de alta velocidade dedicada que possui servidores e recursos compartilhados de STORAGE

More information

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac?

How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? How do I Install and Configure MS Remote Desktop for the Haas Terminal Server on my Mac? In order to connect remotely to a PC computer from your Mac, we recommend the MS Remote Desktop for Mac client.

More information

Behavior Driven Development

Behavior Driven Development Behavior Driven Development For Ruby on Rails Using Cucumber, Capybara, Rspec, Selenium-WebDriver, Rcov, Launchy, etc... James Mason, @bear454 Friday, June 18, 2010 SUSE Appliance Hack Week /me grumbles.

More information

Security Upgrade FAQs

Security Upgrade FAQs Security Upgrade FAQs Your online security is important to us. Soon, we ll be upgrading your online banking experience to include a new security service, which is known in the online security industry

More information

Google Trusted Stores Setup in Magento

Google Trusted Stores Setup in Magento Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping

More information

Managed Devices - Web Browser/HiView

Managed Devices - Web Browser/HiView Managed Devices - Web Browser/HiView All Hirschmann managed devices have a web based GUI interface available for configuration purposes. This is typically the primary means of configuration used for most

More information

Lenovo Partner Access - Overview

Lenovo Partner Access - Overview Table of Contents: Lenovo Partner Access Overview How to Access the Lenovo Partner Access Portal Registration Process and Account Activation First time login Accepting the T s & C s and Selecting Challenge

More information

Web/Mobile Applications Principles

Web/Mobile Applications Principles Web/Mobile Applications Principles Pedro Alves Pedro Alves FCT / UNL Projecto Integrador 2015 Coupling Coupling If changing one module in a program requires changing another module, then coupling exists

More information

SUMMARY. e-soft s.r.l.

SUMMARY. e-soft s.r.l. Pag. 1 di 10 SUMMARY FIRST STEPS ON VT-BAG... 2 LOGIN... 2 SERVER SYNCHRONIZATION... 4 VT-BAG FEATURES... 5 MODULES ORGANIZATION... 5 FIELDS TO DISPLAY IN ENTITY LIST... 6 ENTITY DETAIL... 7 NAVIGATION

More information

3dCart Shopping Cart Software V3.X Gift Registry Guide

3dCart Shopping Cart Software V3.X Gift Registry Guide INTRODUCTION 2 ENABLE THE GIFT REGISTRY 2 CREATE A GIFT REGISTRY MENU LINK 3 CREATE A GIFT REGISTRY 4 ADD PRODUCTS TO THE REGISTRY 7 SEND NOTIFICATION OF REGISTRY 9 SEARCH/ACCESS A REGISTRY 11 END YOU

More information

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team Contents Offshore Web Development Company CONTENTS... 2 INTRODUCTION... 3 SMART FORMER GOLD IS PROVIDED FOR JOOMLA 1.5.X NATIVE LINE... 3 SUPPORTED

More information

ONLINE DISABILITY CERTIFICATE GUIDELINES FOR APPLICANTS

ONLINE DISABILITY CERTIFICATE GUIDELINES FOR APPLICANTS Department of Health and Family Welfare ONLINE DISABILITY CERTIFICATE GUIDELINES FOR APPLICANTS The Disability form is designed to fill up the personal details of the people suffering from various types

More information

One-Time Password Contingency Access Process

One-Time Password Contingency Access Process Multi-Factor Authentication: One-Time Password Contingency Access Process Presenter: John Kotolski HRS Security Officer Topics Contingency Access Scenarios Requesting a Temporary One-Time Password Reporting

More information

Shoppingcart page type overview

Shoppingcart page type overview Shoppingcart page type overview Here is a quick overview of it: You can create specially formatted links (see below) anywhere in your app which when tapped by user will ADD an item to shopping cart or

More information

Setup guide for ebanking

Setup guide for ebanking Setup guide for ebanking SETUP GUIDE This setup guide will take you through your initial logon to ebanking with Access ID. At the end of the setup guide, you will also find detailed contact information

More information

Parent Single Sign-On Quick Reference Guide

Parent Single Sign-On Quick Reference Guide Parent Single Sign-On Quick Reference Guide Parent Single Sign-On, introduced in PowerSchool 6.2, offers a number of benefits, including access to multiple students with one sign in, a personalized account

More information

Windmill. Automated Testing for Web Applications

Windmill. Automated Testing for Web Applications Windmill Automated Testing for Web Applications Demo! Requirements Quickly build regression tests Easily debug tests Run single test on all target browsers Easily fit in to continuous integration Other

More information

Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS e no mínimo 4 (quatro) placas de rede.

Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS e no mínimo 4 (quatro) placas de rede. Provedor de Internet e Serviços - (41) 3673-5879 Balance PCC para 3 links adsl com modem em bridge (2 links de 8mb, 1 link de 2mb). Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS

More information

Install and End User Reference Guide for Direct Access to Citrix Applications

Install and End User Reference Guide for Direct Access to Citrix Applications Install and End User Reference Guide for Direct Access to Citrix Applications Version 1.0 7/26/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME FINAL NACIONAL DO ENSINO SECUNDÁRIO Prova Escrita de Inglês 11.º Ano de Escolaridade Continuação bienal Decreto-Lei n.º 139/2012, de 5 de julho Prova 550/1.ª Fase 8 Páginas Duração da Prova: 120

More information

Scripts. MIT s Dynamic Web Hosting Service

Scripts. MIT s Dynamic Web Hosting Service Scripts MIT s Dynamic Web Hosting Service Overview Scripts serves web apps from your home directory in AFS (/mit/your- username/web_scripts on Athena)! Autoinstaller does all the hard setting up of a web

More information

KETTERING EACCOUNTS WEB PORTAL HELP SHEET

KETTERING EACCOUNTS WEB PORTAL HELP SHEET KETTERING EACCOUNTS WEB PORTAL HELP SHEET Kettering eaccounts solution builds in the convenience for students and employees to manage their BJ Bucks, Meal Plan or Kettering Cash accounts. eaccounts features

More information

Portal Recipient Guide

Portal Recipient Guide Portal Recipient Guide Lindenhouse Software Limited 2015 Contents 1 Introduction... 4 2 Account Activation... 4 3 Forgotten Password... 9 4 Document signing... 12 5 Authenticating your Device & Browser...

More information

Security Testing with Selenium

Security Testing with Selenium with Selenium Vidar Kongsli Montréal, October 25th, 2007 Versjon 1.0 Page 1 whois 127.0.0.1? Vidar Kongsli System architect & developer Head of security group Bekk Consulting Technology and Management

More information

Mobile Online Banking

Mobile Online Banking Mobile Online Banking User Guide Table of Contents Enrolling Through Traditional Online Banking, pg. 2 Enrolling Using Your Mobile Device, pg. 4 Login Screen, pg. 7 Locations, pg. 7 Mobile Browser View,

More information

CNAME and Redirection Code Instructions Table of Contents Using a Custom Domain/SubDomain... 3 Specific Provider Instructions... 3 1&1... 3 DNS Park... 4 enom... 4 Eurodns.com... 4 EveryDNS.net... 5 Gandi.net...

More information

Manual Activity after implementing note 1872926

Manual Activity after implementing note 1872926 Manual Activity after implementing note 1872926 General Note: Create the below objects in the same order as mentioned in the document. The below objects should be created after implementing both the SAR

More information

ACORD. Lync 2013 Web-app Install Guide

ACORD. Lync 2013 Web-app Install Guide ACORD Lync 2013 Web-app Install Guide 1 Index Internet Explorer Pages 3-5 Google Chrome..Pages 6-8 Mozilla Firefox.Pages 9-12 Safari..Pages 13-16 2 If using Internet Explorer as your default browser upon

More information

Download and Launch Instructions for WLC Client App Program

Download and Launch Instructions for WLC Client App Program Download and Launch Instructions for WLC Client App Program Version 1.0 Contents Introduction... 1 Windows 7, IE9... 2 Windows 7 or XP, IE8... 3 Windows 7 or XP, Firefox... 4 Windows 7, Google Chrome...

More information

3dCart Shopping Cart Software V3.X Affiliate Program Guide

3dCart Shopping Cart Software V3.X Affiliate Program Guide INTRODUCTION 2 SETUP THE AFFILIATE MENU LINK 2 UPLOAD BANNERS 4 ENABLE THE AFFILIATE PROGRAM 6 REGISTRATION PROCESS 7 APPROVE AFFILIATES 11 MANAGE ORDERS 12 MANAGE COMMISSION PAYOUTS 13 END YOU VE REACHED

More information

New Support Request System

New Support Request System New Support Request System Paymetric Customer Community September 2015 Presenter: Lisa Gschwind, Technical Publications Manager 1 How the Webinar Works Participants are muted during the presentation If

More information

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012

Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 Web+Center Version 7.x Windows Quick Install Guide 2 Tech Free Version Rev March 7, 2012 1996-2012 Internet Software Sciences Welcome to the Web+Center Installation and Configuration guide. This document

More information

All mail administration activities can be carried out using the Domain Management Console.

All mail administration activities can be carried out using the Domain Management Console. Mail Administration The Domain Management Console All mail administration activities can be carried out using the Domain Management Console. The Domain Management Console is a web-based facility to allow

More information

WHMCS LUXCLOUD MODULE

WHMCS LUXCLOUD MODULE èè WHMCS LUXCLOUD MODULE Update: 02.02.2015 Version 2.0 This information is only valid for partners who use the WHMCS module (v2.0 and higher). 1.1 General overview 1.2 Installing the plugin Go to your

More information

InternetVista Web scenario documentation

InternetVista Web scenario documentation InternetVista Web scenario documentation Version 1.2 1 Contents 1. Change History... 3 2. Introduction to Web Scenario... 4 3. XML scenario description... 5 3.1. General scenario structure... 5 3.2. Steps

More information

Step by Step Guide for Upgrading Your NetCamPro Camera to Cloud Mode Using an Android Device

Step by Step Guide for Upgrading Your NetCamPro Camera to Cloud Mode Using an Android Device Step by Step Guide for Upgrading Your NetCamPro Camera to Cloud Mode Using an Android Device Table of Contents Introduction...2 Backing Out Cloud Mode...2 Indoor Camera Factory Reset...2 Outdoor Camera

More information

For Use with QR Code Scanner / Reader Enabled Applications

For Use with QR Code Scanner / Reader Enabled Applications Xerox QR Code App Quick Start Guide 702P03999 For Use with QR Code Scanner / Reader Enabled Applications Use the QR (Quick Response) Code App with the following applications: QR Code Scanner / Reader Applications,

More information

E-LEARNING STUDENT S MANUAL

E-LEARNING STUDENT S MANUAL E-LEARNING STUDENT S MANUAL By Williams College E-Learning is the College s Online Learning Environment, designed to enhance your learning experience by providing access to online course materials, activities,

More information

ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC. CHAPTER I General rules

ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC. CHAPTER I General rules ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC CHAPTER I General rules Article 1 Object This Regulation contains the rules applicable

More information

(` Online Read Introduo ao Disciplined Agile Delivery: A Pequena Jornada de um Time gil do Scrum ao Continuous Delivery (Portuguese...

(` Online Read Introduo ao Disciplined Agile Delivery: A Pequena Jornada de um Time gil do Scrum ao Continuous Delivery (Portuguese... (` Online Read Introduo ao Disciplined Agile Delivery: A Pequena Jornada de um Time gil do Scrum ao Continuous Delivery (Portuguese... to get free ebooks ID:ruojde Click Here to Read Introduo ao Disciplined

More information

Enable Your Automated Web App Testing by WebDriver. Yugang Fan Intel

Enable Your Automated Web App Testing by WebDriver. Yugang Fan Intel Enable Your Automated Web App Testing by WebDriver Yugang Fan Intel Agenda Background Challenges WebDriver BDD Behavior Driven Test Architecture Example WebDriver Based Behavior Driven Test Summary Reference

More information

Copyright 2011 Center for Innovation in Teaching and Research 1

Copyright 2011 Center for Innovation in Teaching and Research 1 Mobile Websites with Dreamweaver CS5.5 Center for Innovation in Teaching and Research Presenter: Chad Dennis Instructional Technology Systems Manager ce-dennis@wiu.edu Copyright 2011 Center for Innovation

More information

How To Use Optionbot 2.0 On A Pc Or Mac Or Mac (For Pc) Or Mac) Or Pc (For Mac)

How To Use Optionbot 2.0 On A Pc Or Mac Or Mac (For Pc) Or Mac) Or Pc (For Mac) V.2.0 OptionBot 2.0 User Instructions Contents 1. Getting Started 2. Functions 3. Optimal Settings & Trading 4. Disclaimer 1. Getting Started ***IMPORTANT*** Optionbot 2.0 is optimised for use with Firefox

More information

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

Link / Login / Logout Page 2. Home Page Page 2. Home Page Breakdown by Levels Page 3. Home Page Breakdown by Columns Page 3

Link / Login / Logout Page 2. Home Page Page 2. Home Page Breakdown by Levels Page 3. Home Page Breakdown by Columns Page 3 Table of Contents Link / Login / Logout Page 2 Home Page Page 2 Home Page Breakdown by Levels Page 3 Home Page Breakdown by Columns Page 3 Home Page Main Menu Links.. Page 4 Sort by Page.. Page 4 Main

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

More information

How to use the Online Module Enrolment Application

How to use the Online Module Enrolment Application How to use the Online Module Enrolment Application Introduction This guide will take you through how to select your preferred optional modules for the new academic year using Online Module Enrolment. Note:

More information

Tufts University Human Resources New Hire Benefits Enrollment

Tufts University Human Resources New Hire Benefits Enrollment Online allows fast and convenient processing of your New Hire Benefits Enrollment elections. You will be able to print a confirmation statement after you have completed your. Prior to enrolling online,

More information

Most of the security testers I know do not have

Most of the security testers I know do not have Most of the security testers I know do not have a strong background in software development. Yes, they maybe know how to hack java, reverse-engineer binaries and bypass protection. These skills are often

More information

Self-Service Portal Registering, downloading & activating a soft token

Self-Service Portal Registering, downloading & activating a soft token Self-Service Portal Registering, downloading & activating a soft token Document issue: 3.2 Date of issue: September 2014 Contents Introduction... 3 About two-factor authentication... 3 About egrid authentication...

More information

Note: Password must be 7-16 characters and contain at least one uppercase letter and at least one number.

Note: Password must be 7-16 characters and contain at least one uppercase letter and at least one number. Krowd Technical FAQ TEAM MEMBERS If you need assistance with krowd, please call the TEAM MEMBER Help Desk at 800-832-7336. We want to hear your suggestions and feedback! Please join the krowd Source community

More information

Sophos Mobile Control Startup guide. Product version: 3

Sophos Mobile Control Startup guide. Product version: 3 Sophos Mobile Control Startup guide Product version: 3 Document date: January 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos

More information

McAfee One Time Password

McAfee One Time Password McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System

More information

IPA Help Desk. How to use Self-Service portal. [Version 1.0] [28/12/1435 H] FRM CC-UME-V001

IPA Help Desk. How to use Self-Service portal. [Version 1.0] [28/12/1435 H] FRM CC-UME-V001 IPA Help Desk How to use Self-Service portal [Version 1.0] [28/12/1435 H] How to use Self-Service portal Institute of public administration provides a new Help Desk system which allows users in the head

More information

Chromebook Reference Document

Chromebook Reference Document Chromebook Reference Document Introduction A Chromebook is a laptop computer made to browse the web and run web apps. Chromebooks run Chrome OS as the operating system and have an interface similar to

More information

How To Read A Quarantine Email On Hb.Com

How To Read A Quarantine Email On Hb.Com HB Spam Filtering Account Revised 10/22/08 Each faculty and staff member has a spam account while at HB. You should log in on a daily basis to review any messages. 1. Logging in Go to the following website

More information