trabajo-afectivo/test/browser/customer_ticket_create_test.rb

56 lines
1.2 KiB
Ruby
Raw Normal View History

2012-12-14 10:14:48 +00:00
# encoding: utf-8
require 'browser_test_helper'
2013-02-12 00:56:23 +00:00
class CustomerTicketCreateTest < TestCase
def test_customer_ticket_create
2015-02-22 22:20:05 +00:00
@browser = browser_instance
login(
username: 'nicole.braun@zammad.org',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
2015-02-22 22:20:05 +00:00
# customer ticket create
click( css: 'a[href="#new"]' )
click( css: 'a[href="#customer_ticket_new"]' )
2015-02-22 22:20:05 +00:00
sleep 2
2015-02-22 22:20:05 +00:00
select(
css: '.newTicket select[name="group_id"]',
value: 'Users',
2015-02-22 22:20:05 +00:00
)
set(
css: '.newTicket input[name="title"]',
value: 'some subject 123äöü',
2015-02-22 22:20:05 +00:00
)
set(
css: '.newTicket [data-name="body"]',
value: 'some body 123äöü',
2015-02-22 22:20:05 +00:00
)
click( css: '.newTicket button.submit' )
2015-02-22 22:20:05 +00:00
sleep 5
# check if ticket is shown
location_check( url: '#ticket/zoom/' )
2015-02-22 22:20:05 +00:00
match(
css: '.active div.ticket-article',
value: 'some body 123äöü',
no_quote: true,
2015-02-22 22:20:05 +00:00
)
# update ticket
set(
css: '.active [data-name="body"]',
value: 'some body 1234 äöüß',
2015-02-22 22:20:05 +00:00
)
click( css: '.active button.js-submit' )
2015-02-22 22:20:05 +00:00
watch_for(
css: '.active div.ticket-article',
value: 'some body 1234 äöüß',
2015-02-22 22:20:05 +00:00
)
2012-12-14 10:14:48 +00:00
end
end