Questions tagged [selenide]

Selenide is a framework for writing easy-to-read and easy-to-maintain automated tests in Java.

Selenide is based on and is compatible to Selenium WebDriver 2.0. It defines concise fluent API, natural language assertions and does some magic for ajax-bases applications to let you focus entirely on the business logic of your tests

References:

290 questions
0
votes
3 answers

Selenide- invalid selector: Unable to locate an element with the xpath expression

I am trying to check the content of all link pages which are found on the required URL. So I do the following: 1- find all links in the required URL 2- check the validation for links (href content) 3- navigate to each link 5- check our condition for…
Hana90
  • 943
  • 5
  • 17
  • 37
0
votes
1 answer

Running jetty web server before selenide tests

I have multi module maven project. One parent and two submodules. In first module I have integration tests, specifically selenide tests, which are testing web application. Web application is in the second module. I want to deploy application via…
Mário Jaroš
  • 433
  • 1
  • 3
  • 11
0
votes
5 answers

Need to pass multiple (20+) parameters in a Java method. Any efficient way of doing this?

I have multiple methods in a Java class where every method has 20+ parameters. I will create an object for this class in another class and call each and every method. Typically I'm using the POM (Page Object Model) in Selenium Java. So in every Page…
0
votes
1 answer

How to disable security warning in firefox using selenide?

enter image description here I am getting this error while i run in firefox(version 42.0). when i check it in chrome , it does not show up.Please help me to resolve this issue.
parsa
  • 3
  • 4
0
votes
1 answer

Is there any way to start with a POST request using Selenide

I'm trying to start a Selenide test with a POST request to my application. Instead of a simple open(/startpoint) I would like to do something like open(/startpoint, stuff=foo,stuff2=bar) Is there any way to do that? I'm asking this because the…
parsa
  • 3
  • 4
0
votes
3 answers

Selenide ElementsCollection throwing StaleElementException

I've started using Selenide recently, and I'm loving the fluent code it allows. I do have strange issue with ElementsCollection, however. $$("some ref").filterBy(not(attribute("an-attr-that-should-not-be"))).getTexts() This query intermittently…
Maxim Kumpan
  • 2,545
  • 2
  • 19
  • 23
-1
votes
0 answers

Selenide Extent Report consolidate multiple test run result

I had coded selenide automation testing and I need consolidate multiple run testing result by day 1 day 2 day 3. How to accomplish this? I tried coded output json formatter like…
nicholas
  • 2,581
  • 14
  • 66
  • 104
-1
votes
0 answers

How to automate testing with Java

I'm doing UI automation with Selenide. I can't locate elements inside with regular way by xpath or css selector. enter image description here I'd like to find predictable and stable solution to make automation of on Java
user21241341
-1
votes
1 answer

Locating element within inner injected html code

I got a web page which has other Html code within itself. The problem is Selenide/Selenium can access only outer html but can't reach the inner one. Is there any trick which let me reach inner input element? The html code looks like this:
-1
votes
1 answer

Gradle + Java + Selenide + Cucumber >> can't configure and retrieve cucumber-report

Have simple cucumber feature with related auto-test (gradle-selenide) and would like to get 'pretty' cucumber html report. build.gradle: plugins { id 'java' id "com.github.spacialcircumstances.gradle-cucumber-reporting" version…
John Wind
  • 1
  • 1
-1
votes
1 answer

Safari bug - selenium Actions click method

I get exception: org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died. Every time i use on Safari: Actions action = new Actions(WebDriverRunner.getWebDriver()); …
Kamil1014
  • 27
  • 8
-1
votes
1 answer

How to fix java.net.UnknownHostException: npm.taobao.org when using Selenium through WebDriverManager

I am using Selenide version 5.3.1. I created just sample project to open browser using open("https://www.google.com") method by Selenide. This works fine and it automatically downloaded latest chrome driver binaries using webDriverManager. Now If…
Javed Ahmed
  • 223
  • 1
  • 3
  • 17
-1
votes
5 answers

Get the list of elements in a div class

I have multiple div classes. I need to get the inner div elements of the text values.
newbie
  • 147
  • 1
  • 1
  • 8
-1
votes
1 answer

Aborted click in Selenide

I write some automation code in Selenide for practice. I have following problem: i don't know whats going on, but sometimes on method clickFillExpertsApplication Selenide clicks on localized button, loading of new page is starting, but after 1 sec…
moroyoung11
  • 63
  • 1
  • 9
-1
votes
1 answer

verify placeholder text in a web page using selenide with java

using selenide and java need to validate/assert placeholder text on a field is displayed/exists. The HTML: I know how to do it in selenium.But I…
newbie
  • 147
  • 1
  • 1
  • 8
1 2 3
19
20