summaryrefslogtreecommitdiff
path: root/src/browser/web_browser.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-08-04 17:22:21 +0200
committerSanto Cariotti <santo@dcariotti.me>2021-08-04 17:22:21 +0200
commit909e2cbdf8cbb311f4abef2c0c1d176987580a76 (patch)
treedbcfa17a56a12c7549c9867842cd44b14c917de1 /src/browser/web_browser.rs
parent1be956d27668dcf2052ea82b191ae1917e6cb11b (diff)
feat: get faculties for the /room command
Diffstat (limited to 'src/browser/web_browser.rs')
-rw-r--r--src/browser/web_browser.rs34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/browser/web_browser.rs b/src/browser/web_browser.rs
index 804c82f..d2ba6c4 100644
--- a/src/browser/web_browser.rs
+++ b/src/browser/web_browser.rs
@@ -1,10 +1,13 @@
use crate::Config;
+use std::collections::HashMap;
use std::{thread, time};
+use thirtyfour::common::capabilities::firefox::FirefoxPreferences;
use thirtyfour::error::{WebDriverError, WebDriverErrorInfo, WebDriverErrorValue};
use thirtyfour::prelude::{By, WebDriverResult};
use thirtyfour::{FirefoxCapabilities, WebDriver, WebDriverCommands};
const LOGIN_URL: &str = "https://studenti.smartedu.unict.it/WorkFlow2011/Logon/Logon.aspx?ReturnUrl=%2fStudenti%2fDefault.aspx";
+const ROOMS_URL: &str = "https://studenti.smartedu.unict.it/StudentSpaceReserv?Type=unaTantum";
pub struct Browser {
driver: Option<WebDriver>,
@@ -70,6 +73,37 @@ impl Browser {
Ok(())
}
+
+ pub async fn faculties(&self) -> WebDriverResult<Option<HashMap<String, String>>> {
+ if let Some(_d) = &self.driver {
+ _d.get(ROOMS_URL).await?;
+ thread::sleep(time::Duration::from_millis(1000));
+
+ _d.find_element(By::Css(
+ "span[aria-labelledby='select2-dipartimentoSelector-container']",
+ ))
+ .await?
+ .click()
+ .await?;
+
+ let list_elements = _d
+ .find_elements(By::Css("#select2-dipartimentoSelector-results li"))
+ .await?;
+
+ let mut faculties_ids = HashMap::<String, String>::new();
+
+ for i in list_elements {
+ faculties_ids.insert(
+ i.get_attribute("data-select2-id").await.unwrap().unwrap(),
+ i.text().await.unwrap(),
+ );
+ }
+
+ return Ok(Some(faculties_ids));
+ }
+
+ Ok(None)
+ }
}
pub static mut WEB_BROWSER: Option<Browser> = None;