How to select last page in "Print When Expression" in iReport? - ireport

I want to print some specific details only on last page in iReport using $V{PAGE_NUMBER} and $V{PAGE_COUNT} variables. I don't want to use "Last page footer" or similar because it doesn't fit in my desired position.
When I type $V{PAGE_NUMBER}.equals($V{PAGE_COUNT}) condition in "Print When Expression", nothing happens. Any suggestions?
Also, is there any place where I can see the description of variables and other features in iReport?
Many thanks!

I found the solution. Creating new group above all groups will solve the problem. In that group footer you enter things you want to see only on last page

create a new group give it a name and then you can use print when expression

Related

Need help locating element with XPath

I am learning about xpath , can you help me go to the "i class" tag and click on reddit's up vote icon. I tried to find the comment text
I can connect the paragraph
//div[contains(p/text(),'The user name completes this')]
and find the up vote icon tag right below this comment
https://www.reddit.com/r/me_irl/comments/zg7nr5/comment/izgy4a3/?utm_source=reddit&utm_medium=web2x&context=3
You can locate the parent div block of the entire comment by the text content and then go to upvote button inside it as following:
"//div[contains(.,'The user name completes this')][contains(#class,'Comment')]//button[#aria-label='upvote']"
I'm not sure you really need that i icon element so I gave the locator of the upvote button.
In case you really need the i element inside it - it can be located similarly as following
"//div[contains(.,'The user name completes this')][contains(#class,'Comment')]//i[contains(#class,'upvote')]"
Like this:
//div[contains(.,'The user name completes this')]//button[#data-click-id='upvote']

"stop-on-error" column does not show up

I am new to testcomplete.Just trying our some sample exercises and trying to understand this automation tool. So I was trying to automate navigating to a particular page on a website. I am doing the record and playback feature. However, when I line up multiple tests and try to run them together, the 'stop-on-error' column does not show up. The only columns I see are "Name, Test, Count, Timeout,min, Parameters and Description" I do not see the "stop-on-error" column. Any idea what could be the issue? Do I need to turn on something?
Thanks! :)
In your Project Playlist, right-click the whitespace to get a pop dialogue, then select "Field Chooser". You can add the "Stop on Error" column from there.

How to change Related product title block in Magento

Want to know, how can i change the block title of Related product block in magento? I mean that, i want to replace the title named "Related product" with my own text.
Thanks
Mostaq
Hello check below file
app/design/frontend/base/default/template/catalog/product/list/related.phtml or
app/design/frontend/your_current_theme/default/template/catalog/product/list/related.phtml
Hope this help you.
After GO to Your related page and see the red line with book
icon to click on it and replace your text without Going To file System.
For Backend Related Product Tab Label Change for
1) direct change on core file:
app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tabs.php
find Related and replace
2)Create Module to dynamic :
http://stackoverflow.com/questions/16481564/where-to-change-magento-default-tabs-on-products

Displaying a text on the last page of crystal report?

This might be a very naive question but i am not able to get to it.
I have a simple text object that i wish to display only on the last page of the report after all my details section and group footer sections are displayed.
I have tried applying Suppress property on page footer to work, but it does not happen. Then i tried suppressing the text object but that did not work as well.
This is what i pushed into formula field:
if PageNumber = TotalPageCount then
false
else
true
Am i missing something.
Any help will be highly appreciated.
Thanks in advance.
Try putting your text object in the Report Footer section.
you will required to use Report Footer. please follow a link. if this is the answer to your question mark the answer.
Link:.
http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.businessobjects.integration.eclipse.doc.crdesigner/reportdesigner/crconreportfooter.htm
Create a section below the last group and place your text field there so that when ever everything is displayed you will get the required text
E.g:
If you have Group1 and Group2 then create a section in group footer of Group1 using "Insert Section below and place the Text field there.
Resolved...!!! The problem was that in the Format Text dialog box, after writing the formula i had checked the Suppress Check Box because of which the Text Object was Suppressed all the time. Thanks for all your help...!!

Selenium and xpath: Clicking a checkbox in one table's column, based on text in another?

Basically there is a table with names, edit buttons, and a checkbox at the end column that I want to check on with selenium. But I want to make sure I click on the one I created with selenium and that's where my problems begin.
Using the selenium IDE, the names xpath is
//tr[5]/td[2]
The checkbox is
//tr[5]/td[4]/input
So the text is in column 2 and the box is column 4, and my record would be the 5th one. but I cannot for the life of me get ANY text search to work. Even something basic like
<tr>
<td>storeText</td>
<td>//tr[contains(text(), 'McGowan')]/td[2]</td>
<td>text</td>
</tr>
Even if the text matches identically, it gives me the locator not found error. No matter what combination i use to find xpath by text it has never worked, and ive spent quite a few hours reading every combination out there.
We are using the IDE and the RC in html, so no java or any other exporting.
Thank! (My first post!)
//td[text()='McGowan']/../td/input[#type='checkbox']
Let me know if this works for you!
This might be odd, but the coment below the answer, regarding a random click that let to the answer ---> //tr[contains(., 'text')]/td[3]/a <--- was just randomly verified as exactly what I needed.
Good job guys.

Resources