Skip to content
Snippets Groups Projects
Commit c48e3322 authored by srosse's avatar srosse
Browse files

OO-2868: update selenium tests

parent f7593139
No related branches found
No related tags found
No related merge requests found
...@@ -187,9 +187,9 @@ public class GroupPage { ...@@ -187,9 +187,9 @@ public class GroupPage {
* @return * @return
*/ */
public String getGroupURL() { public String getGroupURL() {
By urlBy = By.cssSelector("p.o_sel_group_url"); By urlBy = By.cssSelector("p.o_sel_group_url input");
WebElement urlEl = browser.findElement(urlBy); WebElement urlEl = browser.findElement(urlBy);
String url = urlEl.getText(); String url = urlEl.getAttribute("value");
return url; return url;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment