How can we skip a test in blazemeter using if condition, for example i have 10 drop-downs i have to select only the drop-down which are in select position which are not in select position they are prefill with some other option. Here i have to select only the select position drop-down rest should be not tested using blazemeter and selenium. Appreciate your help.
Related
Scenario is based on the 2nd column value I need to click on check box lie in first column.
Problem is by default table displays 5 rows of data, in this case the element is getting detected properly and check box works. But if the record is not in displayed 5 rows I have to use the number of item dropdown to load more rows in table in this case the elements has stopped detecting which is available in first 5 rows as well.
So far I checked no change in XPATH and page scrolls a bit so tried using Actions as well to move to the element and click but did not work.
Things seems to be working after using Actions/ActionChain instead of find_element()
Hi everyone I am having a bit of a difficult time even trying to find articles on apex collections and the apex_item functionality but was wondering if anyone has any experience on how to condition a LOV when the the select list has been generated using APEX_ITEM.SELECT_LIST_FROM_LOV.Im still pretty new to using this functionality so I hope this does come across well and makes some sense!
I am currently using Apex 19.1 with oracle database 12c!
We have an apex app we are building and our users want the app to allow the user to pick the number of rows as the number of rows needed can vary for each user, so we achieved this by creating a page item that allows the user to select a number from 1 to 50 - this then generates an interactive report based on this number where the user can then select a further options within 3 select lists as shown below.
We have shown this concept to the business and they really like how this all works. They have identified a requirement where they would like these select lists to then be conditional before the selection is then passed into apex_collections so that when the 'Export From' option is selected it will only allow the user to see the countries that are available within the 'Import To' select list. Furthermore once the country has been selected they want the 'Depot DST' option to only show the available options for the selected country.
I have attempted to look at the select query within the shared component LOV for the application and change this around but I assume because there is no page item associated with the selected values that this wont work as the select list keeps going blank when testing out any changes I make. Any help or advice on how to achieve this would be greatly appreciated.
Regards,
Helen.
have you tried this:
under columns of your report select the column you want to be conditionally filled, when select on the right side of the apex developer look for the List of values submenu and the Cascading LOV Parent Column(s)
there select your parent column and incorporate the column in the where clause of your select for the list of values, pointing at it like this :YOUR_COLUMN NAME
I am doing automation to download all document by customer.
i am having trouble with counting total rows in table because it is image based env. you can see the following image
i have tried to find selectors, but there is no selector
Can any body tell me how can i do it
Thanks
if you are using image recording then try the following:
1. First select Image Recording and from Screen Scraping choose the option Screen Scraping as follow:
2. Just click on the image that you want to scrape data. In the follow up pop-up window select Region to Scrape option and specify the region/image to scrape as follow:
3. Then for your new scraped data select the following options on the right side as follow:
4 The output of your recording will be Text (unstructured data), so let us covert it to Data Table (structure data) so we can count the rows.
5 In order to do that we use Activity Generate Data Table
6 Lastly we use Activity For Each Row to count the rows and store them in a row_Counter variable.
7 Workflow as follow:
Hope these information will be useful.
How can we select a value from a field which shows text as auto populate in Selenium Web Driver?
Example :
1. We have a text field.
2. Enter some text like 'ab' in field.
3. It will show a drop down as per text.
4. Now we've to select a value from the drop down through Webdriver.
Could you please help me for the same?
Thanks,
I am trying to use selenium to check that a table on the page has a particular string.
I am trying to use "Table Should Contain". Does this check all the pages of result or only the results displayed on the current page?
1) You can use isElementPresent() or isVisible() functions
2) You can get the css for the entire table and do a search for the particular string you're searching for.
Option 2 tends to be faster, but I don't know how the table on the page works, so the string might be in the css selector even though its not actually displayed on the page.