in Education by
Actually I am checking the excel values whether they are displayed on the web page Mouse hover menu. The menu includes titles and the menu item links. The menu items in main menu and the sub links are in child menu. When I tried to collect all the links, I am getting them separately by finding with CSS. I want to get all the links in one array. I have used the below commands. Please help me how to get all the elements in one array. The developers code is attached as screen shots : String AdminRoleAccessfilepath = "D:\\PMC Automation\\AdminRoleAccess.xls"; FileInputStream AdminRoleFile=new FileInputStream(AdminRoleAccessfilepath); Workbook rwb=Workbook.getWorkbook(AdminRoleFile); Sheet AdminRolesheet=rwb.getSheet("AdminRole"); int submenucolumnsize=AdminRolesheet.getRows(); int menucolumnsize=AdminRolesheet.getRows(); String[] arraysubmenu=new String[submenucolumnsize]; String[] arraymenu=new String[menucolumnsize]; ListSubTitlelist = driver.findElements(By.cssSelector(".child_menu>a ")); List allSubTitleslist=new ArrayList<>(); ListTitleslist = driver.findElements(By.cssSelector("#menu_nav>ul>li>a ")); int submenuui = 0; for (int a=1;a " +arraysubmenu[a]+ " existing on the Web Page" ); else System.out.println("\nThe Sub Menu item in the UI-> " +arraysubmenu[a]+ " not existing on the Web Page"); } int menuui = 0; for (int b=1;b " +arraymenu[b]+ " existing on the Web Page" ); else System.out.println("\nThe Title in the Menu in the UI-> " +arraymenu[b]+ " not existing on the Web Page"); } JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Combine the selectors into one CSS using a comma. '.child_menu>a , #menu_nav>ul>li>a'

Related questions

0 votes
    I have written tests with Selenium2/WebDriver and want to test if HTTP Request returns an HTTP 403 Forbidden. ... Selenium WebDriver? Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    Axes, axis labels and titles all appear in the ________ of the figure. (a) Directions (b) Margin labels ( ... Networks of R Programming Select the correct answer from above options...
asked Feb 11, 2022 in Education by JackTerrance
0 votes
    I am converting my selenium 1 code to selenium 2 and can't find any easy way to select a label in a ... ("//path_to_drop_down"); Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    How to open a new tab in the existing Firefox browser using Selenium WebDriver (a.k.a. Selenium 2)? Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    I am having a challenge. I am using Jpos and I am trying to set field 127 sub-element 033 as well as unpacking it. When packing ... isoMsg.getString("127.033")); for (int i = 1; i...
asked Apr 23, 2022 in Education by JackTerrance
0 votes
    I want to display an indexed table view. By default, section index titles have gray color. How do ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
0 votes
    I want to display an indexed table view. By default, section index titles have gray color. How do ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    I want to display an indexed table view. By default, section index titles have gray color. How do ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 27, 2022 in Education by JackTerrance
0 votes
    I have a domain that will be accessed by a small, private group of people. So I want to control ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    Which of the following can be used to create sub-samples using a maximum dissimilarity approach? (a) minDissim ... and answers pdf, Data Science interview questions for beginners...
asked Oct 28, 2021 in Education by JackTerrance
0 votes
    How to get the UserID of all the currently logged in users using Apex code?...
asked Nov 11, 2020 in Technology by JackTerrance
0 votes
    How will you get the sum of all numbers present in a list using Java 8 in Java8?...
asked Nov 8, 2020 in Education by Editorial Staff
0 votes
    Is there a built in dll that will give me a list of links from a string. I want to send in ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 21, 2022 in Education by JackTerrance
0 votes
    I want to log in to instagram using selenium, but I can't seem to enter values into the fields. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 1, 2022 in Education by JackTerrance
...