All Questions
272 questions
2
votes
1
answer
115
views
Selenium error from unspecified arguments
I am trying to write a test for a HTML page. I am getting an error when my C# code attempts to click a button on the screen. The button works as intended when I click it manually, but my code produces ...
-1
votes
2
answers
214
views
Can't find servicenow search box to enter text
I'm using a servicenow testing instance where I'm trying to find the element for the search box, and I've tried it by ID, by XPath, and other things but so far it keeps giving me the ...
0
votes
1
answer
63
views
Parse WhatsApp message read status [closed]
My question is more about html layout and parsing dynamic of content.
My task: parse contacts who read my particular message in the Group.
I tried to see DOM structure for the DIV block that hold that ...
0
votes
1
answer
45
views
Click on a Selenium button that isn't an input
I've the following HTML code:
<div _ngcontent-fsi-c26="" class="col-xs-12 ng-star-inserted" style="margin-top: 3%;">
<div _ngcontent-...
1
vote
0
answers
60
views
Html interaction (select and click-submit) with Selenium under C#
I am trying to interact with an html page with Selenium and I cannot perform the actions that I would like to.
I have a form to fill-in with two sets of actions that needs a final validation before ...
0
votes
1
answer
82
views
Problem Using Selenium for Chrome to find element in HTML file with C#
I am using Selenium to find elements in HTML document displayed within the Chrome browser. The HTML is not of my making and seems to have lots of problems. I have no ability to change its generation,...
0
votes
1
answer
123
views
How to obtain table data from a website that is hidden using selenium and c#?
I'm trying to scrape the following website and extract the table data of products using selenium in c# but when I want to parse the HTML result, I can't find the table. It seeems the table is loaded ...
0
votes
1
answer
171
views
How to make selenium chromedriver execute a callback when an element changes? (C#)
For example,
a webpage contains the following element:
<div id="mydiv">abcd</div>.
After few seconds, the content of the div change to any other text, lets say 1234.
I want my C# ...
0
votes
2
answers
96
views
Selenium chromedriver for retrieving current value of dropdown table <tbody> data from a Webpage and export in csv file
table structure for web Url is below.
<body>
<div class="marketData-inputSelect">
<select class="js-select js-optionsDataFilter">
<...
-1
votes
1
answer
583
views
Element <span class="selectable-text copyable-text"> is not reachable by keyboard. C#
So I m trying, to send a message the whatsapp text field but whenever i try to input it. It only inputs the first letter of the sentence. Since only one character is getting to the text field i am ...
1
vote
2
answers
460
views
C# selenium find an element by text then click on checkbox
I want to search for example (UK) then click on checkbox that is in the same row
HTML (but tr can increase or decrease)
<tr class="ng-scope table-row-style">
<td class="ng-...
0
votes
1
answer
234
views
Selenium: Looping through IWebElements consistently gives me the wrong element
This has been driving me bonkers for days. I did finally get it working, but I want to know why everything I tried prior is not working.
I can't post my full HTML as it is too long, but I do have an ...